Is it possible to get a Total by Month?

I would like to condense some data that I have based on Month's. I just need the total Quantity.
Brief description-
Date Quantity
1/2/24 50
1/2/24 25
1/3/24 50
January 125
2/1/24 25
2/2/24 50
2/2/24 50
Best Answer
-
By Sheet's formula
=SUMIFS(Quantity:Quantity, Month:Month, Month#)
FYI, Month#'s # is used to designate a Sheet Summary field.
By Report's Summary feature
Answers
-
By Sheet's formula
=SUMIFS(Quantity:Quantity, Month:Month, Month#)
FYI, Month#'s # is used to designate a Sheet Summary field.
By Report's Summary feature
-
I am getting an #Invalid data type on the Sheet Summary. Does the Month field need to be a date type?
edit: I found a couple of blank cells in the Date, it works great!
-
Happy to help!😁 Glad it’s working now!