Check a Box, Reference Another Sheet, Days from today
Hello,
I am working with 2 sheets. 1 sheet is providing a summary of the other sheet. I need assistance with creating the formula.
On the summary sheet, I want to check a box if there is a row listed on the other sheet with the same city and has a scheduled date of 6 months from today.
Formula:
=IF({Site}, =Site@row, {Scheduled Date}, @cell <= TODAY(180)), 1, 0)
Thank you for the help.
Best Answer
-
Try this instead...
=IF(COUNTIFS({Site}, @cell = Site@row, {Scheduled Date}, AND(@cell >= TODAY(), @cell <= TODAY(180))) > 0, 1)
Answers
-
Try this...
=IF(COUNTIFS({Site}, @cell = Site@row, {Scheduled Date}, @cell<= TODAY(180)) > 0, 1)
-
Thanks, @Paul Newcome !
The checkbox is working, but I see how my initial ask didn't communicate my desired outcome correctly. I'd like to check the box if there is a date listed on the opposite sheet between today and 180 days from today. Is there a 'between dates' function that can be used? Thank you
-
Try this instead...
=IF(COUNTIFS({Site}, @cell = Site@row, {Scheduled Date}, AND(@cell >= TODAY(), @cell <= TODAY(180))) > 0, 1)
-
Thank you @Paul Newcome 💪 Works perfectly!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 207 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!