Conditional Formatting using a custom formula?
Hi there,
So I'm trying to set up conditional formatting to visually alert us if 3 days go by and we haven't followed up with someone.
My idea is to make an "Estimate Sent" cell which records the date we sent an estimate and turn it red if we haven't checked the "Estimate Approved" column after 3 days go by from the date the estimate was sent.
Is there a way to achieve this without creating a bunch of hidden columns with formulas? I know how to make a cell that references the estimate sent cell and adds 3 work days, then use that to trigger it, but I'd like to avoid having a bunch of junk backend cells.
I have seen the condition of "in the last (Days)..." but that only makes it red if the estimate date is the past 3 days, but once those 3 days are over it reverts. Not what I'm looking for.
And the "in the past" condition is just anytime in the past. I'm looking for the color to not change until after 3 days have passed from the date entered into "Estimate Sent" column.
Answers
-
Hi @RCPrimary ,
Try something like this:
=IF(AND([Estimate Sent]@row < TODAY(-3), ISBLANK([Estimate Approved]@row)), 1, 0)
This should translate to:
If the the Estimate Sent date is before 3 days before today AND the Estimate Approved cell is blank, check the box; otherwise, don't.
Let me know if it works for you!
Best,
Heather
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
- 143 Just for fun
- 58 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!