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!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 142 Industry Talk
- 473 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!