Sumproduct problem

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
 
P

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
 
C

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









- Show quoted text -

Thanks the second one worked!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

How to make SUMPRODUCT work over range that includes text? 4
SUMPRODUCT formula help 2
SUMPRODUCT 3
Sumproduct with a twist 4
Sumproduct formula problem 5
Sumproduct help again 6
Sumproduct Help! 2
SUMPRODUCT 1

Top