Count across multiple worksheets

T

Tammy

How can I count the # of times something occurs across
multiple worksheets in a workbook?

Thanks!
 
P

Peo Sjoblom

=SUMPRODUCT(COUNTIF(INDIRECT("'Sheet"&{1,2,3}&"'!A1"),">5"))

the above would count how many cells A1 is greater than 5 in sheets 1 to 3
 
Top