How to create a SUMPRODUCT OR COUNTIF for multiple criterias and ranges

  • Thread starter Thread starter ims121uk
  • Start date Start date
I

ims121uk

I have been trying to create a sumproduct formula for a excel sheet,
which has multiple criterias and data ranges.

for example: -

first range is D12:P16 with this criteria >=4
second range is D21:P22 with this criteria >=4
third range is D28:P34 with this criteria >=3
fourth range is D23:P23 with this criteria >=3

anyone that can help me with this?

many thanks
 
What exactly are you trying to test? Your ranges are all different sizes and
SP insists on same size ranges to work.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
I am testing these ranges as a COUNT function for data values set upon
those arguments. If sumproduct isn't suitable for these size ranges are
there any other formulas that i can used.

Imran
 
Hi
With the different ranges, it looks like you are adding four sums with
one criteria each?

regards
Paul
 
Yeah that right! what other alternative method can i used?

regards
Imran
 
Hi
Do your four seperate sums and add them together. Why do you need an
alternative to that?

regards
Paul
 
I am updating a rating sheet, which has rating between 1 to 5 where I
want to collated this information from one sheet to another with these
ranges.

Imran
 
Maybe you want

=COUNTIF(D12:P16,">=4")+COUNTIF(D21:P22,">=4")+COUNTIF(D28:P34
,">=3")+COUNTIF(D23:P23,">=3")

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

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

Back
Top