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
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!