-----Original Message-----
One way
=SUMPRODUCT(COUNTIF(INDIRECT("'"&MyNames&"'!"&CELL ("address",L12)),"*Payment
Received*"))
where MyNames is a named range that holds a list of your sheet names,
if it is always in L12 you can use
=SUMPRODUCT(COUNTIF(INDIRECT("'"&MyNames&"'! L12"),"*Payment Received*"))
If the sheet names are excel default you can use
=SUMPRODUCT(COUNTIF(INDIRECT("'Sheet"&ROW(INDIRECT ("1:10"))&"'!L12"),"*Payme
nt Received*"))
ROW(INDIRECT("1:10"))
is the sheet numbers as in Sheet1, Sheet2 up to 10, change to fit, if
different names
use the first formula where you list all sheet names in question and use a
defined name (MyNames)
--
Regards,
Peo Sjoblom
.
I don't quite follow your answer. Here's more