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
- 66.7K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 509 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives