View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PFB PFB is offline
external usenet poster
 
Posts: 12
Default SUMPRODUCT won't work on a row

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"}))