Sumproduct problem

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Hello,

I have the following formula:

=SUMPRODUCT('Open Reqs by Org'!B1:B1000)*('Open Reqs by Org'!
M1:M1000="RC")

I am trying to sum column B where the corresponding column in the same
row matches the text "RC" This should be fairly simple but I keep
getting the value of 0 where it should be around 20. Any suggestions?

Thanks,

Chris
 
Try


=SUMPRODUCT((B1:B1000)*(M1:M1000="RC"))

or


=SUMPRODUCT(--(M1:M1000="RC"),B1:B1000)


add your page names to the formulas

--


Regards,


Peo Sjoblom
 
Try

=SUMPRODUCT((B1:B1000)*(M1:M1000="RC"))

or

=SUMPRODUCT(--(M1:M1000="RC"),B1:B1000)

add your page names to the formulas

--

Regards,

Peo Sjoblom









- Show quoted text -

Thanks the second one worked!
 
Back
Top