Activity Health
I am trying to recreate a previous formula I used and am not sure where I messed up for task health. Can someone help me find what is causing my IRERROR function to be true for rows 1 & 2?
Formula Used:
=IFERROR(IF(ISBLANK([% Complete]@row), "", IF(Status@row = "Complete", "Gray", IF(AND([Start Date]@row < TODAY(), Status@row = "Not Started"), "Red", IF(AND([End Date]@row < TODAY(), Status@row <> "Complete"), "Red", IF(NETWORKDAYS([Start Date]@row, TODAY()) / NETWORKDAYS([Start Date]@row, [End Date]@row < [% Complete]@row), "Green", "Yellow"))))), "ERROR")
Answers
-
IF(NETWORKDAYS([Start Date]@row, TODAY()) / NETWORKDAYS([Start Date]@row, [End Date]@row < [% Complete]@row), "Green", "Yellow") this part of the formula is what is causing the error
It should be the below the ) was in the incorrect place.
=IF(NETWORKDAYS([Start Date]@row, TODAY()) / NETWORKDAYS([Start Date]@row, [End Date]@row) < [% Complete]@row, "Green", "Yellow")
-
Thank you @Hollie Green
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.4K Get Help
- 364 Global Discussions
- 201 Industry Talk
- 430 Announcements
- 4.4K Ideas & Feature Requests
- 137 Brandfolder
- 129 Just for fun
- 128 Community Job Board
- 446 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 284 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!