sumproduct a whole column
Not because of blanks, it's because of text, that means if you have formulas
that return "" then it will fail. It can be rewritten as
=SUMPRODUCT(--(C1:C65535="Epoxy"),--(D1:D65535="Straight"),E1:E65535)
are you seriously using 65535 rows, if so expect the workbook to be very
slow
--
Regards,
Peo Sjoblom
"steve" wrote in message
...
Mike,
I would still have an issue with blank cells. I get #Value!
Thanks,
Steve
"Mike H" wrote:
If your prepared to take a chance on the last row try:-
=SUMPRODUCT((C1:C65535="Epoxy") * (D1:D65535="Straight") * (E1:E65535))
Mike
"steve" wrote:
here is my function:
=sumproduct((C:C="Epoxy") * (D:D="Straight") * (E:E))
as you've already guessed, I get #Value!. I don't know up front how
many
rows to include, so I included the entire column. What can I do to my
formula to ignore blanks?
Or do I need to set up some sort of dynamic list?
Thanks,
Steve
|