Tasks due within # of days
Sorry I know this is silly but can't figure out the formula looking at examples. I want a value returned if 'target end date' is due with 7, 15, 30. I have this working but can't seem to figure out how to add the additional criteria to include the other values. The values I want to return are just looking at Target End Date --
=IF(TODAY() >= [Target End Date]@row, "LATE ", "") --
How do I add the extra conditions?
Best Answer
-
=if([Target End Date]@row < today(),"Late",if([Target End Date]@row < today()+7, "Due in Next Week", if([Target End Date]@row < today() + 15, "Due in Next 15 Days", [Target End Date]@row < today()+ 30, "Due in Next 30 Days"
Or something similar. You can post a completion check as well at the beginning of the statement to say what you want if the status is complete
Answers
-
=if([Target End Date]@row < today(),"Late",if([Target End Date]@row < today()+7, "Due in Next Week", if([Target End Date]@row < today() + 15, "Due in Next 15 Days", [Target End Date]@row < today()+ 30, "Due in Next 30 Days"
Or something similar. You can post a completion check as well at the beginning of the statement to say what you want if the status is complete
-
Thank you so much! This worked!
Help Article Resources
Categories
Check out the Formula Handbook template!