Can I write a formula to check a box once a period of time has passed and a cell is blank?
I am working with 3 columns; "Proposal Submission Date", "Project Awarded", and a checkbox indicating "No Response from GC."
Can I write a formula which will check a box after looking at my submission date first to determine if it is 6 months old or older, then looking at the "Project Awarded" column and determine if there is information in that cell?
I have been trying to use the IF function but with no luck. #UNPARSEABLE.
This is what I am using in the checkbox column : =IF((Project Awarded@row=" "), (Proposal Submission Date@row < TODAY(-180), 1, 0))
Best Answer
-
Try something like this:
=IF(AND([Proposal Submission Date]@row< TODAY(-180), [Project Awarded]@row = ""), 1)
Answers
-
Try something like this:
=IF(AND([Proposal Submission Date]@row< TODAY(-180), [Project Awarded]@row = ""), 1)
-
That worked perfectly!! Thank you!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 462 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 59 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!