Hi there! There are a few formulas out here for similar-ish issues but I can’t find on that matches exactly what I need.
I’m trying to create a formula that shows “Done” if the date is in the past, “Upcoming” if in the future or “In progress” if it’s on the day. The first two are working fine, but I can’t get it to show “In Progress”. It’s driving me insane as I can’t figure out why :frowning:
IF(
IS_AFTER({Live Date}, TODAY()),
"✅Done✅",
IF(
{Live Date} = BLANK(),
"🛑DATE NEEDED🛑",
IF(
IS_BEFORE({Live Date}, TODAY()
),
"⏰Upcoming⏰",
"🏃♂️In progress🏃♂️"
)
)
)