little help with something I thought would be simple:
in A column I have names:
A1 = "josh"
A2 = "dani"
A3 = "bobby"
in B column I have numbers:
B1 = 2
B2 = 4
B3 = 5
I want to sum the B values for "josh" and "dani" only. (B1 and B2)
I tried this:
=SUMIF(A1:A3, "josh, dani", B1:B3)
and this:
=SUMIF(A1:A3, OR(josh, dani), B1:B3)
always returns 0
in A column I have names:
A1 = "josh"
A2 = "dani"
A3 = "bobby"
in B column I have numbers:
B1 = 2
B2 = 4
B3 = 5
I want to sum the B values for "josh" and "dani" only. (B1 and B2)
I tried this:
=SUMIF(A1:A3, "josh, dani", B1:B3)
and this:
=SUMIF(A1:A3, OR(josh, dani), B1:B3)
always returns 0