Google-sheets – How to sum values by month

google sheets

I'm trying to have my spreadsheet to sum up values by month. Note that the dates are not organised chronologically. I've tried the solutions showing here but they are not working for me.
I'm not really good at this.

Here is my document: https://docs.google.com/spreadsheets/d/1rEqff3Ce_JRly4S2JJsRQP-QfQKBB9OVF9mYg-1ujl4/pubhtml

Best Answer

Please try putting the start and end dates (say in G1 and H1) and a formula such as:

=sumifs(C:C,B:B,">="&G1,B:B,"<="&H1)  

Alternatively, since all your dates appear to be this year, you might extract the month number with something like:

=month(B1)  

copied down to suit and then create a pivot table with that number for Rows.