Skip to main content

IF/OR statement to compare 2 sets of dates (4 fields total)

  • May 13, 2021
  • 1 reply
  • 7 views

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!

1 reply

Kamille_Parks11
Forum|alt.badge.img+27
IF(
   OR(
      {Date 1} > {Date 2},
      {Date 3} > {Date 4}      
   ),
   "Needs Review",
   "Updated"
)