Hey everyone!
I had help with a formula not too long ago, and I’ve simply tweaked it to apply to other tables… but as of now, I’m not getting the results I need.
Here’s the formula:
IF(
{Date},
IF(
Date > TODAY(),
IF(
DATETIME_DIFF(Date, TODAY(), "days") <= 30,
"30 days", "1 month",
IF(
DATETIME_DIFF({Date}, TODAY(), "days") <= 180,
"180 days",
"6 months"
)
),
"Send 6 month status check email"
),
"Send 30 day status check email"
)
Every status is showing as “Send 6 month status check email” even if it’s within 30-days. Help?
And can anyone offer resources for the clueless when it comes to building formulas (outside of the Airtable cheat sheet)? I would definitely appreciate the help.

