sumif over multiple sheets

  • Thread starter Thread starter Fritzi
  • Start date Start date
F

Fritzi

am trying to get a sum for a particular item in a workbook. There are 43
 
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top