Im trying to summarise some data that i have in a spreadsheet. See below for an extract. Basically, im trying to count how many "Yes"&"N/A" there are for each month and also how many "No" there are for each month and display it in the form of a chart.
I've managed to do it as an overall but cant seem to break it down per month.
Any help would be appreciated. thanks!
I'm not sure what your setup looks like, but this works for me.
In A1:B14 January Yes January Yes January Yes February Yes March Yes April No May No June No July No August Yes September Yes October Yes November Yes December Yes
In F1:F12 January February March April May June July August September October November December
G1 = Yes H1 = No
I1 = =SUMPRODUCT((A:A=F1)(B:B=$G$1)) J1 = =SUMPRODUCT((A:A=F1)(B:B=$H$1))
Fill down.