How to Count number of boxes checked in a date range, Cross sheet formula
Alywilk
✭✭✭
I am needing help with a cross-sheet formula to count the number of boxes checked if the date column is between a certain range. My current formula looks like this:
=IFERROR(COUNTIFS({Checkbox column}, =1, AND({Date column}@cell >= DATE(2022, 9, 1), @cell <= DATE(2022, 12, 6))), "")
however I only get a blank entry or an Invalid Data type entry if I take out the IFERROR part(some rows don't have dates). or an Unparseable. Screen shot of columns below
Best Answer
-
Try this;
=COUNTTIFS({Checkbox Column Range}, 1, {Date Column Range}, AND(@cell >= DATE(2022,9,1), @cell <= DATE(2022,12,6)))
Answers
-
Try this;
=COUNTTIFS({Checkbox Column Range}, 1, {Date Column Range}, AND(@cell >= DATE(2022,9,1), @cell <= DATE(2022,12,6)))
-
Thank you so much! this worked!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 479 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 490 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!