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
- 67.1K Get Help
- 449 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!