Skip to main content

Gosh darn it - another IF query :/

  • November 12, 2019
  • 2 replies
  • 20 views

I want to reference two fields in my IF but I just can’t seem to make it work…

IF({Due date}>TODAY(),"+",“OK”), IF(Status=“Complete”, “Complete”, “OK”))

2 replies

Forum|alt.badge.img+18
IF(
   IS_BEFORE(TODAY(), {Due Date}),
   "+",
   IF(
      Status="Complete",
      "Complete",
      "OK"
   )
)

This first checks the {Due Date} against Today’s date, and if it is later than Today’s date, returns “+”.
If {Due Date} is not later than Today’s date, then it moves on the check if {Status} = “Complete”.
If so, it returns “Complete”.
If that check fails as well, then it returns “OK”.


  • Author
  • Participating Frequently
  • November 13, 2019

Amazing - I’ll try it now :slightly_smiling_face: