This is a proper formula, as in it returns 1
if the 22nd is after {Date Stamp}
, and 0
if not (and #ERROR!
if the date field is empty).
If you want to customize the return, wrap the formula in an IF()
statement, or two IF()
statements to return a blank cell if {Date Stamp}
is empty like so:
IF({Date stamp}, IF(IS_AFTER(DATETIME_PARSE('22/1/2020', 'DD/MM/YYYY'),{Date stamp}), '22/1/2020 is after', '22/1/2020 is before'))
This is a proper formula, as in it returns 1
if the 22nd is after {Date Stamp}
, and 0
if not (and #ERROR!
if the date field is empty).
If you want to customize the return, wrap the formula in an IF()
statement, or two IF()
statements to return a blank cell if {Date Stamp}
is empty like so:
IF({Date stamp}, IF(IS_AFTER(DATETIME_PARSE('22/1/2020', 'DD/MM/YYYY'),{Date stamp}), '22/1/2020 is after', '22/1/2020 is before'))
Thank you - it works