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)
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?
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?