Assistance Needed with Formula to Identify Late Tasks
I have a Helper Column that I've created in order to tally Late Tasks based on entries in other fields. I want the Late Task column to be populated with 1 if the following conditions are met: [Open Task]# = 1 and [Due Date]# is less than Today.
I tried the following formula and receive #INVALID OPERATION when the Open Task # column is populated and the Due Date is any value (populated or blank). The field is empty if the Open Task column is 0.
=IF(AND([Open Task #]5 = 1), IF(DAY([Due Date]5 < DAY(TODAY())), 1, 0))
I'm relatively new to SmartSheet formulas and would appreciate any help I can get!
Best Answer
-
Try this...
=IF(AND([Open Task #]@row = 1, [Due Date]@row < TODAY()), 1)
Answers
-
Try this...
=IF(AND([Open Task #]@row = 1, [Due Date]@row < TODAY()), 1)
-
THANK YOU!!!
-
Happy to help! 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!