IF(OR(ISBLANK) Statement
I am trying to set a colored dot to Green if the project is on time, Red if it is late and Yellow if it is not started ([Date Completed] = blank). The Red and Green work, but I cannot get the yellow dot. Any help would be greatly appreciated. This is the formula as it stands.
=IF(OR(ISBLANK([Date Completed]1, "Yellow"), IF([Date Completed]1 - [Scheduled Date]1 <= 0, "Green", IF([Date Completed]1 - [Scheduled Date]1 > 0, "Red"))))
Comments
-
This should work for you. Your formula was incorrectly written around the ISBLANK function. Formatted for reading:
=IF (
ISBLANK([Date Completed]1),
"Yellow",
IF (
[Date Completed]1 - [Scheduled Date]1 <= 0,
"Green",
IF (
[Date Completed]1 - [Scheduled Date]1 > 0,
"Red"
)
)
)and for copy and paste:
=IF ( ISBLANK([Date Completed]1), "Yellow", IF ( [Date Completed]1 - [Scheduled Date]1 <= 0, "Green", IF ( [Date Completed]1 - [Scheduled Date]1 > 0, "Red" ) )
)--
Lee Joramo
Data Integrations Developer - Mesa County Valley School Dist. 51
970-254-5104 x11556
-
That worked! Thanks.
-
This forum is not allowing me to correct the formatting of the copy and paste test. Here it is again:
=IF(ISBLANK([Date Completed]1), "Yellow", IF([Date Completed]1 - [Scheduled Date]1 <= 0, "Green", IF([Date Completed]1 - [Scheduled Date]1 > 0, "Red" )))
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
- 141 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!