Forum Discussion

MiguelCosta735's avatar
MiguelCosta735
Copper Contributor
Oct 01, 2021
Solved

How to count checkboxes between two dates

I want to count the number of checked boxes for an entire column that matches a certain date range.

 

For example, I want to count the number of checked boxes under column "CriteriaA"  that happen in All of August  ....column "DateApplied". Scratching my head on the formula...

  • HansVogelaar's avatar
    HansVogelaar
    Oct 01, 2021

    MiguelCosta735 

    Use

     

    =COUNTIFS(A3:A12,">="&DATE(2021,8,1),A3:A12,"<="&DATE(2021,8,31),B3:B12,TRUE)

     

    or

     

    =SUMPRODUCT((MONTH(A3:A12)=8)*B3:B12)

5 Replies

Resources