Automating Sheet Summary
Hi there,
I'm extremely new to SS. I'm trying to automate our Sheet Summary on our timelines. I would like to automate the Project Health to look something like this.
RED = 7 days before due date and less than 75% complete
YELLOW = 30 days before due date and <50% complete, AND 14 days before due date and <75% complete
GREEN = 30 days before due date and >=50% complete, AND 14 days before due date and >=75% complete
GRAY = 0% complete <--- basically indicating the project hasn't Kicked off yet.
Thanks in advance for any insight you can offer.
Best Answer
-
It is possible. Do you have a row that contains a specific Due Date that you would use for the overall project?
Answers
-
Is this in an actual Sheet Summary field, or is this by row?
-
Hi Paul,
Well so the timeline each task has a health, but we want to use the sheet summary to summarize the overall health of the project. Is this possible?
-
It is possible. Do you have a row that contains a specific Due Date that you would use for the overall project?
-
Yes I do have a field for the specific due date.
-
Then your formula would look pretty much the same as if you were going to automate the RYG status in the sheet itself.
In the formula below, just update column names/row numbers to reflect what cell you will actually be referencing in the sheet itself.
=IF([% Complete]1 = 0, "Gray", IF(AND([Due Date]1<= TODAY(7), [% Complete]1<= 0.75), "Red", IF([Due Date]1<= TODAY(14), IF([% Complete]1<= 0.75, "Yellow", "Green"), IF([Due Date]1<= TODAY(30), IF([% Complete]1<= 0.5, "Yellow", "Green")))))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 422 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!