Jul 13, 2023 07:31 PM - edited Jul 13, 2023 07:35 PM
I have a formula that is achieving 2/3 of my goals, but I need some help figuring out that last 1/3! I am trying to add an "SOS" flag to any to-do that meets one or more of the following criteria:
How would I structure that final part of the formula? Currently, I have:
Solved! Go to Solution.
Jul 13, 2023 07:51 PM
Hi @ellllllllllle, the last component to your OR() clause should be as follows:
AND(DATETIME_DIFF({Due Date}, TODAY(), 'days')<0, {Status}!="Done")
Altogether, the formula should look like this:
IF(
OR(
{Alerts}="Behind",
{Due In}<1,
AND(DATETIME_DIFF({Due Date}, TODAY(), 'days')<0, {Status}!="Done")),
"🆘", "")
Let me know if that works!
Jul 13, 2023 07:51 PM
Hi @ellllllllllle, the last component to your OR() clause should be as follows:
AND(DATETIME_DIFF({Due Date}, TODAY(), 'days')<0, {Status}!="Done")
Altogether, the formula should look like this:
IF(
OR(
{Alerts}="Behind",
{Due In}<1,
AND(DATETIME_DIFF({Due Date}, TODAY(), 'days')<0, {Status}!="Done")),
"🆘", "")
Let me know if that works!
Jul 13, 2023 07:57 PM
@CJSmith It worked, thank you so much!
Jul 13, 2023 07:58 PM
You got it!