How to count checkboxes-checked, between Nov 1st, 2020 and December 1st, 2020
I am looking for help creating a formula that works with the above question. I will replicate it for each month through one fiscal year timeline.
Currently I have this formula which results in UNPARSEABLE.
=COUNTIF({Data Range 3X}, true), COUNTIFS({Tuning Release Date Range}, >= A11, {Tuning Release Date Range}, <= A12)
I have also tried another formula, but it does not count properly.
=COUNTIFS({Tuning Release Date Range}, IFERROR((@cell), 0) >= DATE(2020, 11, 1), {Tuning Release Date Range}, IFERROR((@cell), 0) <= DATE(2020, 12, 1), {Data Range 1A}, COUNTIF({Data Range 3X}, true))
Looking to, count the amount of dates within each month that show a checkbox - checked.
Thanks!
Best Answer
-
Try something like this...
=COUNTIFS({Date Range}, AND(IFERROR(MONTH(@cell), 0) = 11, IFERROR(YEAR(@cell), 0) = 2021), {Checkbox Range}, @cell = 1)
Answers
-
Try something like this...
=COUNTIFS({Date Range}, AND(IFERROR(MONTH(@cell), 0) = 11, IFERROR(YEAR(@cell), 0) = 2021), {Checkbox Range}, @cell = 1)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 430 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!