If one date is later than another
Solved
cindy
-
cindy -
cindy -
Hello,
I have two dates in two different columns.
I want to indicate if one is greater than the other.
My idea was:
=IF(A1>A2,"FALSE","")
Let’s assume:
A1: 12/06/2013
A2: 15/08/2010
What do you suggest?
Thank you in advance.
Configuration: Windows Vista / Firefox 35.0
I have two dates in two different columns.
I want to indicate if one is greater than the other.
My idea was:
=IF(A1>A2,"FALSE","")
Let’s assume:
A1: 12/06/2013
A2: 15/08/2010
What do you suggest?
Thank you in advance.
Configuration: Windows Vista / Firefox 35.0
=IF(DATEVALUE(A1)>DATEVALUE(A2),"FALSE","")?
If that's the case, it's false because it shows #VALUE, just like
=IF(A1>DATEVALUE(A2),"FALSE","")
To be honest, I have 1086 rows, so I don't plan to rewrite the dates.