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.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 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
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!