Compile numbers from multiple worksheets

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a workbook with over 100 worksheets in it. I need to be able to total
numbers from specific cells on all pages into my cover page. Can someone
help?
 
Something like

=SUM(Sheet2:Sheet100!A1)

and so forth?

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Create a user-defined function SheetSum that loops through the sheets
and sums the relavant ranges. here's the code :

Function SheetSum(ByVal InData As Range) As Variant
Dim wsCurrent As Worksheet
Dim CurSum As Double

CurSum = 0
For Each wsCurrent In Worksheets
CurSum = CurSum + wsCurrent.Range(InData.Address).Value
Next wsCurrent
SheetSum = CurSum
End Function

to call this function to add , for example, the contents of range A2 in
all sheets, enter this formula = SheetSum(A2).

HTH

Fadi
www.chalouhis.com/XLBLOG
 

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