Feb 16, 2021 10:13 AM
I’ve looked all over for this, and there are formulas that get close, but nothing that quite gets what I want.
If the date is equal to or past the date under “Deadline”, autofill the formula cell with “OVERDUE”, unless the Status column (single select) is tagged “Complete”, in which case it should say “Done” no matter what (before, on, or after deadline)
Else-wise, the formula cell should be blank.
Feb 16, 2021 12:26 PM
Meaning, if status is Complete or Archived, fill cell with “Done”
Feb 16, 2021 02:05 PM
Sorry I worded it wrong - i just meant, how to formula for showing “Done” if several statuses, rather than just one. So it would show “Done” if Status is either “Complete” or “Archived”
Feb 16, 2021 02:18 PM
FYI: avoid that by giving people formulas encapsulated in backticks (``) so that IF(“test”) becomes IF("test")
Feb 21, 2021 10:54 AM
For that you need to use the OR function:
IF(OR({Status}="Complete",{Status}="Archived"),"Done",IF(IS_AFTER(TODAY(),{Deadline}),"OVERDUE"))
If you want to extend the formula further, a list of all possible functions is available here: Formula field reference – Airtable Support.