I am trying to "COUNT" indicate the number of a specific object in column I (in this case) on multiple sheets. This value in column i is the result of the formula (if that matters). So far, I:
=COUNTIF('Page M904'!I:I,A13)+COUNTIF('Page M905'!I:I,A13)+COUNTIF('Page M906'!I:I,A13)
which works, but I will have 20 pages to scan. I would like to avoid using a long page formula.
I tried
=COUNTIFS('Page M904:Page M906'!I:I,A13) and =COUNTIF('Page M904:Page M906'!I:I,A13)
but this leads to a #VALUE .
And I think,
=COUNTIFS('Page M904'!I:I,A14,'Page M905'!I:I,A14,'Page M906'!I:I,A14)
is the wrong use of COUNTIFS because I get 0 when it should be 35.
I am trying to avoid using VBA for this application. But if so, then it should be :) Thanks in advance for your time and help.
source share