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
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!