I have a three column workbook with the following data:
Col A: Names
Col B: Numbers
Col C: Dates
I’m currently using the following formula to get the sum of numbers from e.g. all “John” within the month of January.
=SUMIFS(B:B; A:A; "John"; C:C; ">="&DATE(2012;1;1); C:C; "<"&DATE(2012;2;1))
Is there a more elegant way of finding the correct month.
I did try:
=SUMIFS(B:B; A:A;"John"; MONTH(C:C);1))
But that did not work.
Try this: