What formula can I use to determine if the date if B1 is after the
date in A1?
(Notes: Both dates are formatted MM/DD/CCYY).
Excel Date values are stored as a decimal number, The whole number for
the day & the decimal part for the time.
So =INT(B1) > INT(A1)
As the date values are stored as real (or irrational) numbers you
should never use equates in any comparison, always "greater than" or
"less than"...
The display format is either the default, or what you define in cell
format. Dates entered in the standard format for the area are usually
converted to an Excel date value.
Alan Lloyd