Column A,B and C are dates Condition:
If column A date is present use the same date. If date in A column is blank then use date from column B. If column B is blank then use date from column C.
C has the final date.
Column A,B and C are dates Condition:
If column A date is present use the same date. If date in A column is blank then use date from column B. If column B is blank then use date from column C.
C has the final date.
Try this:
=IF(A1=TODAY(),A1,IF(A1="",B1,IF(B1="",C1)))