I have been using the really helpful formula in this airtable article to have a status of done, complete, and in-progress for my project management base: https://support.airtable.com/hc/en-us/articles/221104988-Conditional-formulas-with-emoji
My formula currently looks like this:
IF({Done} = 1, “ Done
”,IF(IS_BEFORE({Due Date}, TODAY()), “
OVERDUE
”,“ :thumbs_up: In-progress
”))
However, I would really like to divide the In-progress into tasks that are currently in-progress (keeping status. as is) and tasks that are upcoming (start date is after today, basically). This is what I want:
Done
: IF({Done} = 1, “
Done
”
:thumbs_up: In-progress :thumbs_up: : Start Date=before today and Due Date=After today
OVERDUE
: Start Date = before today and Due Date=before today
Upcoming
: Start Date= after today
I have tried so many different ways to nest another condition in there, and I just can’t make it work on my own… Would someone please help me out here?