I have budget spreadsheet with columns A:H, with
$Budget.A=date,
$Budget.B=description,
$Budget.C to H = columns of positive and negative numbers
A4 = January
I can SUMIF
positve|negative number over one column
=SUMIF($Budget.C$3:$Budget.C$700,">=0")
I can SUMIF
positve|negative number over more then one column
=SUMIF($Budget.C$3:$Budget.H$700,">=0")
I can SUMIFS
the numbers in one column (say C based on date, based on a date range
=SUMIFS(
$Budget.C$3:$Budget.C$700,
$Budget.A$3:$Budget.A$700, ">="&A4,
$Budget.A$3:$Budget.A$700, "<="&EOMONTH(A4,0))
… but I cannot SUMIFS
these numbers over column C to H, based on a date range
=SUMIFS(
$Budget.C$3:$Budget.H$700,
$Budget.A$3:$Budget.A$700, ">="&A4,
$Budget.A$3:$Budget.A$700, "<="&EOMONTH(A4,0))
The above will throw an Err:502
In effect, I cannot use the SUMIF
in the SUMIFS
.
My final goal is (but doesn’t work)
=SUMIFS(
SUMIF($Budget.C$3:$Budget.H$700,">=0"),
$Budget.A$3:$Budget.A$700, ">="&A4,
$Budget.A$3:$Budget.A$700, "<="&EOMONTH(A4,0))
What am I missing?
Any hints appreciated.