Help with a function
I'm trying to have the Status column drop down pick Processing if date is after today's date, & trying to have the Status column drop down pick LATE if date is before today's date.
But if the date is blank, what would need to be added to the function to have the drop down not choose anything?
Would there need to be an "=IF(ISDATE"
Best Answers
-
Your parentheses is slightly off:
=IF([Estimated Completion Date]@row <TODAY(), "LATE", IF([Estimated Completion Date]@row >TODAY(),"Processing"))
I will point out that if the Estimated Completion Date is TODAY, then this formula will not return anything.
-
See below, as mentioned previously, this does not account for Estimated Completion Date being today.
=IF([Estimated Completion Date]@row <> "", IF([Estimated Completion Date]@row < TODAY(), "LATE", IF([Estimated Completion Date]@row > TODAY(), "Processing")), "")
Answers
-
Your parentheses is slightly off:
=IF([Estimated Completion Date]@row <TODAY(), "LATE", IF([Estimated Completion Date]@row >TODAY(),"Processing"))
I will point out that if the Estimated Completion Date is TODAY, then this formula will not return anything.
-
Thanks so much.
But if the date is blank, what would need to be added to the function to have the drop down not choose anything?
Would there need to be an "=IF(ISDATE"
-
See below, as mentioned previously, this does not account for Estimated Completion Date being today.
=IF([Estimated Completion Date]@row <> "", IF([Estimated Completion Date]@row < TODAY(), "LATE", IF([Estimated Completion Date]@row > TODAY(), "Processing")), "")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.1K Get Help
- 349 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 133 Brandfolder
- 127 Just for fun
- 127 Community Job Board
- 455 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!