Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / December 2007

Tip: Looking for answers? Try searching our database.

linking data

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
JR Winder - 11 Dec 2007 20:38 GMT
Is it possible to have one spreadsheet (A) linked to another spreadsheet (B)
so that any changes made to (A) are automatically recorded in (B)?
Otto Moehrbach - 11 Dec 2007 21:18 GMT
JR
   The simplest way to do this, as I can see, is to use a Worksheet_Change
event macro in sheet A that will copy any changes (in sheet A) to sheet B.
Does this sound like what you might want?  HTH  Otto
> Is it possible to have one spreadsheet (A) linked to another spreadsheet
> (B) so that any changes made to (A) are automatically recorded in (B)?
Otto Moehrbach - 11 Dec 2007 21:25 GMT
Something like this perhaps:
Private Sub Worksheet_Change(ByVal Target As Range)
     Target.Copy Sheets("B").Range(Target.Address)(1)
End Sub
> JR
>    The simplest way to do this, as I can see, is to use a Worksheet_Change
> event macro in sheet A that will copy any changes (in sheet A) to sheet B.
> Does this sound like what you might want?  HTH  Otto
>> Is it possible to have one spreadsheet (A) linked to another spreadsheet
>> (B) so that any changes made to (A) are automatically recorded in (B)?
Gord Dibben - 11 Dec 2007 21:30 GMT
Yep.

See help on "linking workbooks" and "create a link to another cell, worksheet or
workbook"

Gord Dibben  MS Excel MVP

>Is it possible to have one spreadsheet (A) linked to another spreadsheet (B)
>so that any changes made to (A) are automatically recorded in (B)?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.