Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have two identical worksheets on my company network - both in different
locations. What I want to do is link workbook a to workbook b in it's entirety without having to do it cell by cell. How can I do this? Thanks, |
#2
![]() |
|||
|
|||
![]()
You wouldn't want to link an "entire" worksheet to another.
That's a lotta cells.......16777216 What you can do is have both books open. Select the range you want to link from first sheet and copy that range. Select other book and on a new sheet Paste SpecialPaste LinkOKEsc. OR simply save the first workbook to two different locations each time you save it. Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) 'Saves the current file to a backup folder and the default folder 'Note that any backup is overwritten Application.DisplayAlerts = False ActiveWorkbook.SaveCopyAs Filename:="E:\GordStuff\Backup\" & _ ActiveWorkbook.Name ActiveWorkbook.Save Application.DisplayAlerts = True End Sub Gord Dibben Excel MVP On Wed, 12 Jan 2005 13:21:07 -0800, "baileygrrrl" wrote: I have two identical worksheets on my company network - both in different locations. What I want to do is link workbook a to workbook b in it's entirety without having to do it cell by cell. How can I do this? Thanks, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Link in worksheet | Excel Discussion (Misc queries) | |||
Why am I unable to link a cell in one worksheet to a cell in anot. | Excel Discussion (Misc queries) | |||
Can I link a cell to reflect a worksheet name? | Excel Discussion (Misc queries) | |||
How do link to a remote worksheet using the path value in a field? | Links and Linking in Excel | |||
Copy worksheet with Pivot Table and break link to original workshe | Excel Worksheet Functions |