I’m trying to create a formula whereby :
IF [date 1] is after [date 2] OR [date 3] is after [date 4] to tell me “Needs Review”, otherwise “Updated”.
How do i do this? i’m not sure how to compare the date fields.
Thanks!
I’m trying to create a formula whereby :
IF [date 1] is after [date 2] OR [date 3] is after [date 4] to tell me “Needs Review”, otherwise “Updated”.
How do i do this? i’m not sure how to compare the date fields.
Thanks!
IF(
OR(
{Date 1} > {Date 2},
{Date 3} > {Date 4}
),
"Needs Review",
"Updated"
)
This topic was solved and automatically closed 15 days after the last reply. New replies are no longer allowed.