Hi,
I have a sheet with a "Helper Date" column and a column which shows if a participant registered for an event or not. I'm looking for the total of registrants (attended or not) during a quarter of a year. I have two formulas that work now:
The amount of events per quarter:
=COUNTIFS([Helper Date]:[Helper Date], AND(@cell >= DATE(2021, 1, 1), @cell <= DATE(2021, 3, 31)))
And the amount of registrants:
=COUNT(Attended:Attended)
Any suggestions as to how I would combine these formulas to get the amount of registrants during a particular quarter?
Thanks in advance for any suggestions!