Color code the cells
Hi All,
I have a question regarding color coding the cells on Smartsheet.
How can I color code column (Actual Delivery date) to highlight the following:
Dark green : for when the Actual date is equale or less than Date committed
Light Green : for when the Actual Date is after the date committed
Red : for when Actual date is empty
Many thanks :)
Answers
-
You are going to need a helper column that can be hidden after getting it set up. I would suggest making it a dropdown column and using the various color descriptions as the options within the column settings. In this column you would use a formula to output each of the different color descriptions then finally use conditional formatting to actually change the cell colors.
-
@Paul Newcome jumped in before I got this posted, but I would use the same approach.
And here is the formula for the format helper column:
=IF(ISBLANK([Date committed]@row), "", IF(ISBLANK([Actual delivery date]@row), "Not Entered", IF([Actual delivery date]@row <= [Date committed]@row, "On Time", IF([Actual delivery date]@row > [Date committed]@row, "Late", ""))))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!