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
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!