davedave24
Programmer
Hi. I have a simple spreadsheet that I need to total up values per month.
Column A contains dates (shortdate eg 24/02/2012), Column B contains values (currency) related to the date in A.
How can I use SumIf to total up each month? Currently I have:
This returns 0; I've also tried
. How do I properly reference the month?
Cheers.
Column A contains dates (shortdate eg 24/02/2012), Column B contains values (currency) related to the date in A.
How can I use SumIf to total up each month? Currently I have:
Code:
=SUMIF($A3:$A380,MONTH=2,$B3:$B52)
This returns 0; I've also tried
Code:
MONTH(2)
Cheers.