View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default SUMPRODUCT won't work on a row

I'm not sure if it's mentioned at this site or not but you'll find lots of
info:

http://xldynamic.com/source/xld.SUMPRODUCT.html

--
Biff
Microsoft Excel MVP


"PFB" wrote in message
...
Thanks! Where can I find info on why a horizontal (row) data set must be
tested against a vertical array? (Yes, I'm new to this.)

"T. Valko" wrote:

You have to make the array constant a vertical array. Using commas makes
it
a horizontal array. Replace the commas with semicolons:

=SUMPRODUCT(--(A10:U10={"P";"B";"S";"V";"H";"PBSVH"}))

--
Biff
Microsoft Excel MVP


"PFB" wrote in message
...
The following formula works on a column range (A1:A40), but not on a
row
range (A10:U10). What have I missd?

=SUMPRODUCT(--(A10:U10={"P","B","S","V","H","PBSVH"}))