How Can I Move Formulas To New Sheet?

rockyw

Well-known Member
Joined
Dec 26, 2010
Messages
1,196
Office Version
  1. 2010
Platform
  1. Windows
I want to track production numbers for a month at a time. Each day has it's own sheet, each sheet gets it's data from Sheet 1. If I set up the first sheet, 3/15/11, and add all the formulas getting data from sheet one. When I set up the next sheet, 3/16/11, is there an easy way to get all those formulas to move to the next sheet/day? Each new day would look one row lower than the day before, today would be =A3, tomarrow would be =A4, then A5 ect. Would I have to enter new formulas for each new dau? Thanks
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Rockyw

One way that you could do this is setup a template sheet which as a blank page with all the formulas you want on the sheets other than the first sheet. This sheet also has a reference cell which is a value you change to determine what row the sheet is looking at on the first sheet. (As i assume that all the formulas on the same sheet refer to the same row on the first sheet)

This would mean that all you would need to do, is copy the template sheet and change the cell to have the new row to refer to.


an example of the formula might be (Reference cell on template sheet is A1)
if originally the formula looked like this.
Code:
=Sheet1!A10*Sheet1!C10*C5
Then you would change it to
Code:
=INDIRECT(ADDRESS($A$1,1,1,,"Sheet1")*INDIRECT(ADDRESS($A$1,3,1,,"Sheet1")*C5
--The A1 reference cell would have the value 10 in this example.

I hope that makes sense.

Thanks
tigs
 
Upvote 0
Another option is to copy and paste them all across.
Firstly, do a FIND and REPLACE by replacing all "=" with "#"
Copy and paste to new sheet and then redo the find and replace in reverse order.
 
Upvote 0
Where is FIND? is that in a menu? So that will change each formula by changing each by one row down? Thanks
 
Upvote 0
OK I found that. I changed = to #, copy, paist in the next sheet, then change # to =. I tried that but I must have done something wrong. Could you explain a little more please. Thanks
 
Upvote 0

Forum statistics

Threads
1,214,838
Messages
6,121,885
Members
449,057
Latest member
Moo4247

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top