Enter Multiple Formulas At Once

Chris Waller

Board Regular
Joined
Jan 18, 2009
Messages
183
Office Version
  1. 365
Platform
  1. Windows
Dear All,

I have a large number of Spreadsheets contained in a Workbook Approximately four Spreadsheets are linked to all the others using formulae. What I would like to know is what is the best\easiest way to link all these Spreadsheets rather than inputting each individual formula manually? Every time I create a new spreadsheet I have to input 22 different formulae to link it to the other spreadsheets. TIA
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
I assume you're doing something like pasting lookup links on your 4 spreadsheets to look at the new page?

It can be something as simple as setting the new cells equal to the formula you want. Make the new sheet active to get the ActiveSheet.Name and run the macro.

Something like this:
Code:
Sheets("Sheet1").Range("A1") = "=" & ActiveSheet.Name & "!A1"
Sheets("Sheet2").Range("B9") = "=" & ActiveSheet.Name & "!C6"
etc.
I'm sure you'll have to do more code to position things where you need them to be automatically for each new sheet and depending on your formulas.

You can also take a look at PasteSpecial with xlPasteFormulas for more complicated formulas.

Cells.SpecialCells(xlCellTypeConstants, 3).PasteSpecial Paste:=xlPasteFormulas
 
Upvote 0

Forum statistics

Threads
1,215,372
Messages
6,124,542
Members
449,169
Latest member
mm424

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