Copying a formula down a summary sheet

  • Thread starter Thread starter Blade370
  • Start date Start date
B

Blade370

I have a workbook with multiple spreadsheets from E73 to I91. On each sheet I
have a total that I would like to copy to a summary sheet. I have pasted the
first formula into the summary sheet which is ='E64'!$K23$. I now want to
copy this formula down with the sheet reference incrementing by one e.g the
next one needs to be ='E65'!$K23$ and the next ='E66'!$K23$ and so on.

What is the best and easiest way to do this???

Many thanks in advance
 
You can use indirect
In cell B1
=INDIRECT(A1&"!$K23$") where A1 = E64. then copy down the column.

Now in column A you need the sheet names. If you put E64 in A1 and E65 in
A2. then highlight A1 and A2 and pull down the little square box down the
column A you will get a series of sheet names E64, E65, E66, ......
 
Did you mean sheets E73 to E91?

Why are you referencing sheet E64 and E65 and E66?

Maybe this may be easiest method if you do have typos in your original post.

=INDIRECT("E"&(ROW(64:64)&"!K23"))

Drag/copy down.


Gord Dibben MS Excel MVP
 
I still don't understand the cell and sheet referencing you are describing.

Which are sheets and which are cell references?

Where do E64, E65 and E66 fit into it?

Where do the rooms fit into the picture?

How many sheets do you have?


Gord
 

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