sumif over multiple sheets

M

Mike H

Hi,

I don't believe sumif can be used on 3d ranges so another way would be to
place a sumif on each sheet then

=SUM(Sheet1:Sheet43!A1)

Which will sum a1 on sheets 1 to 43

Mike
 
P

Peo Sjoblom

One way is you create a list with all the sheet names

Assume list with sheet name is H1:H43

=SUMPRODUCT(SUMIF(INDIRECT("'"&H1:H43&"'!A:A"),"X",INDIRECT("'"&H1:H43&"'!B:B")))

will sum B:B where A:A = X

--


Regards,


Peo Sjoblom
 
Top