Blank Value for Schedule Health
Hello,
working with the formula below for schedule health:
=IF([% Complete]@row = 1, "Blue", IF(Status@row = "Cancelled", "Blue", IF(Status@row = "On Hold", "Yellow", IF(TODAY() > [End Date]@row, "Red", IF(AND(TODAY(10) >= [End Date]@row, [% Complete]@row < 0.5), "Yellow", "Green")))))
Would like to add: If [End Date]@row is blank, return a blank cell. but it isn't allowing me to use either of the following formulas. Any help as to what I am doing wrong?
=ISBLANK([End Date]@row, IF([% Complete]@row = 1, "Blue", IF(Status@row = "Cancelled", "Blue", IF(Status@row = "On Hold", "Yellow", IF(TODAY() > [End Date]@row, "Red", IF(AND(TODAY(10) >= [End Date]@row, [% Complete]@row < 0.5), "Yellow", "Green"))))), " ")
or
=IFERROR(=IF([% Complete]@row = 1, "Blue", IF(Status@row = "Cancelled", "Blue", IF(Status@row = "On Hold", "Yellow", IF(TODAY() > [End Date]@row, "Red", IF(AND(TODAY(10) >= [End Date]@row, [% Complete]@row < 0.5), "Yellow", "Green"))))), " ")
Best Answer
-
Try this:
=IF([End Date]@row <> "", IF([% Complete]@row = 1, "Blue", IF(Status@row = "Cancelled", "Blue", IF(Status@row = "On Hold", "Yellow", IF(TODAY() > [End Date]@row, "Red", IF(AND(TODAY(10) >= [End Date]@row, [% Complete]@row < 0.5), "Yellow", "Green"))))))
Answers
-
Try this:
=IF([End Date]@row <> "", IF([% Complete]@row = 1, "Blue", IF(Status@row = "Cancelled", "Blue", IF(Status@row = "On Hold", "Yellow", IF(TODAY() > [End Date]@row, "Red", IF(AND(TODAY(10) >= [End Date]@row, [% Complete]@row < 0.5), "Yellow", "Green"))))))
-
Thank you so much! That worked great!
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 207 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives