I'm trying to rewrite a COUNTIFS function so i can use it with an closed workbook, by using COUNT(IF(AND...
I want to count the number of data that has B3 in column AW, E2 in column AN and D3 in column AU. The following function works for that:
=COUNTIFS('data'!$AW:$AW;$B3;'data'!$AN:$AN;E$2;'data'!$AU:$AU;$D3)
Now I tried to rewrite it as follows, but this did not work:
=COUNT(IF(AND('data'!$AW$1:$AW$10000=$B3;'data'!$AN$1:$AN$10000=L$2;'data'!$AU$1:$AU$10000=$D3);1))
What did I do wrong here?
I want to count the number of data that has B3 in column AW, E2 in column AN and D3 in column AU. The following function works for that:
=COUNTIFS('data'!$AW:$AW;$B3;'data'!$AN:$AN;E$2;'data'!$AU:$AU;$D3)
Now I tried to rewrite it as follows, but this did not work:
=COUNT(IF(AND('data'!$AW$1:$AW$10000=$B3;'data'!$AN$1:$AN$10000=L$2;'data'!$AU$1:$AU$10000=$D3);1))
What did I do wrong here?