Thread: Update links
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Shane Devenshire[_2_] Shane Devenshire[_2_] is offline
external usenet poster
 
Posts: 3,346
Default Update links

Hi,

You will probably need to write a macro, you can record the Update Links
steps and then attach that code to a

Private Sub Workbook_NewSheet(ByVal Sh As Object)
ActiveWorkbook.UpdateLink Name:= _
"C:\Documents and Settings\Shane Devenshire\My
Documents\PhoneNumbers.xls", _
Type:=xlExcelLinks
End Sub


--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"wcurtis" wrote:

How can I update links automatically when I drop a worksheet into a workbook?
I have a data sheet that contains links to all the worksheets in my
workbook. I use the data sheet as a template. I select update links when I
copy the worksheet into my workbook but, I have to manually select each item
to update it. Is there a way to update all of my links when it is dropped
into the workbook? I have already checked my calculations to make sure they
are automatic.