Macro Help - Jumping Sheets

N

NICK

Hi All

I have a workbook which contains >200 sheets. What I need
to do is to insert a "cover" sheet and then create a macro
pick up 5 cells from each worksheet (the cells don't
alter) and copy and paste the values into the Cover Sheet
going progressively down a column, with a different column
for each cell.

so i need the macro to go to Sheet1 get the cells paste
into correct columns and then go to Sheet2 and repeat the
process, until there are no more sheets left.

Eg. i need b3, b4, c26, e26, h26 from each worksheet in
the whole workbook to be summarised so column A on the
Cover Sheet has

B3 Sheet1
B3 Sheet2
B4 Sheet3
etc...

If anyone can help it would be a massive time saver!

Cheers
Nick
 
E

Earl Kiosterud

Nick,

Not to mince words, but you said you want the data summarized, yet you seem
to be asking to have it detailed (each listed). If you want a total of all
the b3 cells, you can put something like this in your cover sheet:

=SUM('Sheet 1:Sheet n'!B3)
=SUM('Sheet 1:Sheet n'!B4)

If you want the cells listed in column, I don't understand the pattern.
 

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

Top