Hi Everyone,
I just canât figure the formula thing out and Iâve spent hours on this, so am hoping that someone can help. Please if you respond - know that Iâm not a programmer or formula savvy. Iâm struggling with this.
I have a column called Follow-Up Date. I create a column called Task Status. I want to do the following, so the Task Status column populates with Planning, Due Soon, Wrap it up, Due Today and Overdue based on date criteria of the Follow-Up date.
-
If Follow-up Date is 2 weeks from the follow-up date based on todayâs date, then I want the field to show âPlanningâ
-
If Follow-Up date is 1 week from the follow-up date based on todayâs date, then I want the field to show âDue Soonâ
-
If Follow-up date is 3 days from the follow-up date based on todayâs date, then I want the field to show âWrap it upâ
-
If Follow-Up date is today, then I want the field to show âDue Todayâ
-
If Follow-Up date is past the date, then I want the field to show âOverdueâ
I"ve played with many many examples to try and nail thisâŚsuch as what I have belowâŚbut nothing works. The example below is just one scenario I tried, but what I listed above is really what Iâm after. If anyone can help, Iâd be extremely grateful.
Emma
IF(DATETIME_DIFF({Follow-Up Date},TODAY(),âdaysâ)>=3,DATETIME_DIFF({Follow-Up Date},TODAY(),âdaysâ)<=8),âDue Soonâ,IF(IS_BEFORE({Follow-Up Date },TODAY()),âPast Dueâ,IF(IS_SAME({Follow-Up Date },TODAY()),âDue Todayâ,âUpcomingâ))))
