Hey everyone!
How do I create the statement to leave cell blank if a value is missing instead of #ERROR? I’ve read you should not use the BLANK() code?
Code for Days Left:
WORKDAY_DIFF(TODAY(),Starts)
Code for Urgency:
IF(
{Days Left} < 0,
"🔥OVERDUE",
IF(
{Days Left} <= 20,
"đź”´ ASAP",
IF({Days Left} < 40,
"🟡 Medium",
IF({Days Left} < 100,
"🟢 Low"
)
)
)
)

Thank you in advance!

