I have a spreadsheet with City, Event Date, and Attendance as columns. I want to report the number of attendees for each city for each quarter. Is there a way to collect all attendees for a city and then only count the values in a certain date range like quarterly? Attached is an example that better illustrates the challenge. test.xlsx
That's basically the same thing as Dave suggests except I "hardcoded" the date range in the formula. You could even use cell references which contain dates, so with start date in E2 and end date in F2 that could be
I was just about to post a SUMIFS solution so here it is anyway
=SUMIFS(C5:C9,A5:A9,"Seatt
That's basically the same thing as Dave suggests except I "hardcoded" the date range in the formula. You could even use cell references which contain dates, so with start date in E2 and end date in F2 that could be
=SUMIFS(C5:C9,A5:A9,"Seatt
regards, barry