Formula Problem

Puddycat

New Member
Joined
Aug 10, 2007
Messages
42
I am unable to get this formula to work. It seems simple enough. Can anyone help me with what is wrong? I am trying to get have the formula look for the presence of both items and return the count if it meets both conditions.

{=COUNTIFS{'Piping List'!C3:C17635={"High","Medium","Low"},{'Piping List'!D3:DC17635={"P-160"}}}
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hi

untested but try:

=SUM(COUNTIFS('Piping List'!C3:C17635,{"High","Medium","Low"},'Piping List'!D3:D17635,"P-160"))

This formula does not require array-entering.

I noticed your second range encompassed more than one column - was this intentional?
 
Upvote 0
Yes that is intentional. I tried your formula, but it returns a TRUE statement. I need to get a count of the items that meet both conditions.
 
Upvote 0
Put this into column DD3 copy down
=COUNTIF('piping list'!D3:DC3,"P-160")
the use
=SUMPRODUCT(--('piping list'!C3:C17635={"High","Medium","Low"})*('piping list'!DD3:DD17635))
 
Upvote 0
That doesn't work either. Is there anyway to send you the file I am working with so that you can see what I am trying to do?
 
Upvote 0

Forum statistics

Threads
1,219,161
Messages
6,146,657
Members
450,706
Latest member
LGVBPP

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top