HELP!! I just can't get the following to work into one formula.... basically I have four sets of dates that I need to set status' for to trigger email reminders (1st Pupdate, 2nd Pupdate, 3rd Pupdate, 4th Pupdate). I need a single formula that joins them all together using IF OR or is it IF AND???? I just cant get it to work!!
IF(
{1st Pupdate},
IF(IS_AFTER(TODAY(), {1st Pupdate}), "🔴 1st Overdue", IF(IS_SAME(TODAY(), {1st Pupdate}), "📆 Due Today", IF(IS_AFTER(TODAY(), DATEADD({1st Pupdate}, -1, 'week')), "⚠️ Due Soon","👌 OK"))))
IF(
{2nd Pupdate},
IF(IS_AFTER(TODAY(), {2nd Pupdate}), "🔴 2nd Overdue", IF(IS_SAME(TODAY(), {2nd Pupdate}), "📆 2nd Due Today", IF(IS_AFTER(TODAY(), DATEADD({2nd Pupdate}, -1, 'week')), "⚠️ 2nd Due Soon","👌 OK"))))
IF(
{3rd Pupdate},
IF(IS_AFTER(TODAY(), {3rd Pupdate}), "🔴 3rd Overdue", IF(IS_SAME(TODAY(), {3rd Pupdate}), "📆 3rd Due Today", IF(IS_AFTER(TODAY(), DATEADD({3rd Pupdate}, -1, 'week')), "⚠️ 3rd Due Soon","👌 OK"))))
IF(
{4th Pupdate},
IF(IS_AFTER(TODAY(), {4th Pupdate}), "🔴 4th Overdue", IF(IS_SAME(TODAY(), {4th Pupdate}), "📆 4th Due Today", IF(IS_AFTER(TODAY(), DATEADD({4th Pupdate}, -1, 'week')), "⚠️ 4th Due Soon","👌 OK"))))
@ScottWorld , @Alexey_Gusev , @TheTimeSavingCo