Linking Excel when inserting a line

wyptaj

New Member
Joined
Jul 18, 2007
Messages
14
Hi,
I have an original spreadsheet, and a new spreadsheet which is linked to the original. Therefore what ever I type into the original sheet automatically updates the new spreadsheet I've created.
However I have a problem, when an additional line is included in the original spreadsheet this doesn't filter through to the new spreadsheet.
Is there a way of getting this to work ?
Any help would be much appreciated.
Thanks
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Welcome to the Board!

If I understand your situation, you effectively have a User Input sheet, and a second Output Sheet, which probably has some variation of
Code:
=A1
in cell A1, copied down and across, as needed, to duplicate the data.

If that is the case, the easy way is to instead use this formula in the Output Sheet:
Code:
=INDEX(Sheet1!$1:$65536,ROW(),COLUMN())
, and copy as needed. This should effectively "break the link" and allow the user to insert or delete rows and columns from the Input Sheet without wreaking havoc in the Output Sheet.
 
Upvote 0

Forum statistics

Threads
1,222,405
Messages
6,165,864
Members
451,988
Latest member
boo203

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