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
- 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!