A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Links and Linking
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Adding Row in Linked Data



 
 
Thread Tools Display Modes
  #1  
Old January 11th, 2007, 06:07 AM posted to microsoft.public.excel.links
holmesoz
external usenet poster
 
Posts: 3
Default Adding Row in Linked Data

I have data linked between 2 worksheets in the same workbook. When I add a
row on the one worksheet, it does not add a row on the linked worksheet -
what can I do?
  #2  
Old January 11th, 2007, 01:12 PM posted to microsoft.public.excel.links
Max
external usenet poster
 
Posts: 8,574
Default Adding Row in Linked Data

Assuming Book2.xls is simultaneously open

In Book1.xls,

instead of using this kind of normal link formula
in say Sheet1's A1:
=IF([Book2]Sheet1!A1="","",[Book2]Sheet1!A1)
with A1 copied across and down

use instead in A1:
=IF(OFFSET([Book2]Sheet1!$A$1,ROW(A1)-1,COLUMN(A1)-1)=0,"",OFFSET([Book2]Sheet1!$A$1,ROW(A1)-1,COLUMN(A1)-1))

Copy A1 across and down to return the same linkages as the former but with
the added flexibility that any new row insertions in Book2's Sheet1 (within
the linked area) will now be reflected. Test it out and see for yourself.

Note that Book2 must be simultaneously open for OFFSET to work.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"holmesoz" wrote in message
...
I have data linked between 2 worksheets in the same workbook. When I add a
row on the one worksheet, it does not add a row on the linked worksheet -
what can I do?



  #3  
Old January 11th, 2007, 09:57 PM posted to microsoft.public.excel.links
holmesoz
external usenet poster
 
Posts: 3
Default Adding Row in Linked Data

I am a bit confused - I linked the data using Copy, Paste & then chosing Link
Cells under Paste Options. When I click on a cell on the Linked Data sheet,
the cell reference is "Activity!A1", and so on for each cell. I did not use
a formula.

The linked data is all in the same Book - just linked between two Sheets.



"Max" wrote:

Assuming Book2.xls is simultaneously open

In Book1.xls,

instead of using this kind of normal link formula
in say Sheet1's A1:
=IF([Book2]Sheet1!A1="","",[Book2]Sheet1!A1)
with A1 copied across and down

use instead in A1:
=IF(OFFSET([Book2]Sheet1!$A$1,ROW(A1)-1,COLUMN(A1)-1)=0,"",OFFSET([Book2]Sheet1!$A$1,ROW(A1)-1,COLUMN(A1)-1))

Copy A1 across and down to return the same linkages as the former but with
the added flexibility that any new row insertions in Book2's Sheet1 (within
the linked area) will now be reflected. Test it out and see for yourself.

Note that Book2 must be simultaneously open for OFFSET to work.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"holmesoz" wrote in message
...
I have data linked between 2 worksheets in the same workbook. When I add a
row on the one worksheet, it does not add a row on the linked worksheet -
what can I do?




  #4  
Old January 11th, 2007, 11:14 PM posted to microsoft.public.excel.links
Max
external usenet poster
 
Posts: 8,574
Default Adding Row in Linked Data

Apologies, I had mis-read earlier ..

It's simpler if it's just between sheets in the same book

In Sheet2,

Instead of using simple link formulas in A1:
=Sheet1!A1
with A1 then copied across / down

Use instead in A1:
=IF(OFFSET(Sheet1!$A$1,ROW(A1)-1,COLUMN(A1)-1)=0,"",OFFSET(Sheet1!$A$1,ROW(A1)-1,COLUMN(A1)-1))
Then just copy A1 across / down as required. This returns the same kind of
links as the former but with the added flexibility that any new row
insertions in Sheet1 (within the linked area) will now be reflected in
Sheet2. Test it out and see for yourself.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"holmesoz" wrote in message
...
I am a bit confused - I linked the data using Copy, Paste & then chosing
Link
Cells under Paste Options. When I click on a cell on the Linked Data
sheet,
the cell reference is "Activity!A1", and so on for each cell. I did not
use
a formula.

The linked data is all in the same Book - just linked between two Sheets.



  #5  
Old January 12th, 2007, 12:23 AM posted to microsoft.public.excel.links
holmesoz
external usenet poster
 
Posts: 3
Default Adding Row in Linked Data

Thank you that worked brillantly!

"Max" wrote:

Apologies, I had mis-read earlier ..

It's simpler if it's just between sheets in the same book

In Sheet2,

Instead of using simple link formulas in A1:
=Sheet1!A1
with A1 then copied across / down

Use instead in A1:
=IF(OFFSET(Sheet1!$A$1,ROW(A1)-1,COLUMN(A1)-1)=0,"",OFFSET(Sheet1!$A$1,ROW(A1)-1,COLUMN(A1)-1))
Then just copy A1 across / down as required. This returns the same kind of
links as the former but with the added flexibility that any new row
insertions in Sheet1 (within the linked area) will now be reflected in
Sheet2. Test it out and see for yourself.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"holmesoz" wrote in message
...
I am a bit confused - I linked the data using Copy, Paste & then chosing
Link
Cells under Paste Options. When I click on a cell on the Linked Data
sheet,
the cell reference is "Activity!A1", and so on for each cell. I did not
use
a formula.

The linked data is all in the same Book - just linked between two Sheets.




  #6  
Old January 12th, 2007, 01:51 AM posted to microsoft.public.excel.links
[email protected]
external usenet poster
 
Posts: 5
Default Adding Row in Linked Data

You're welcome !
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
holmesoz wrote:
Thank you that worked brillantly!


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 06:45 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.