I've been using COUNTIF to count the number of occurrences in a month.
So i've got a list of 'events' throughout the year, all with different dates.
I'm wanting to count how many are in each month. What I've done is to use the MONTH formula in another column to give a numerical value of the month in 1 - 12.
And then using a formula to count how many 1's, how many 2's etc. This tells me how many occurrences there are in each month.
=COUNTIF({Improve Data Range 2}, FIND("1", @cell) > 0)
However I noticed the total number was getting a bit high, and realised that my formula for finding '1' was also counting the 1 in 10, so was counting all of Octobers occurrences. I guess by this logic it would also count the 1 in 11, and 12.
Is there to make this formula only identify a singular 1, and not pick up a 1 in a bigger number?
Alternatively is there a way to make the MONTH formula spit out a Month name such as 'Jan' 'Feb' rather than a numerical value? That would be a unique value that countif couldn't mix up.
Thanks