SUMPRODUCT + Name Manager

lukasz_rz

New Member
Joined
Oct 13, 2013
Messages
48
Hi Guys.

I need to count rows where:
- There is a status Opened in column D (Opened is a range in Name Manager, so there is more than one possible status)
- There is a digit 1 in column I
- There is status PG in column B (PG is a range in Name Manager, so there is more than one possible status)


Code:
=SUMPRODUCT(COUNTIFS(INDIRECT($B$13&"!D:D");Opened;INDIRECT($B$13&"!I:I");1;INDIRECT($B$13&"!B:B");PG))

where INDIRECT($B$13&"!D:D") simply means Worksheet!D:D.

Whatever I do, I get 0, even though there are rows that meet all the requirements. What did I do wrong?
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Does this work for you?

=SUMPRODUCT(--ISNUMBER(MATCH(INDIRECT("'"&$B$13&"'!D2:D400");Opened;0));--(INDIRECT("'"&$B$13&"'!I2:I400")=1);--ISNUMBER(MATCH(INDIRECT("'"&$B$13&"'!B2:B400");PG;0)))
 
Upvote 0
Does this work for you?

=SUMPRODUCT(--ISNUMBER(MATCH(INDIRECT("'"&$B$13&"'!D2:D400");Opened;0));--(INDIRECT("'"&$B$13&"'!I2:I400")=1);--ISNUMBER(MATCH(INDIRECT("'"&$B$13&"'!B2:B400");PG;0)))

Wow, as far as I checked, it works! Thanks a lot, you are a true genius :)
 
Upvote 0

Forum statistics

Threads
1,223,910
Messages
6,175,316
Members
452,634
Latest member
cpostell

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