Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hide/auto select Automatic Links Dialog (Excel 2000) 1

Status
Not open for further replies.

aarondewberry

IS-IT--Management
Jul 20, 2005
148
GB
Everytime I log into a specific excel workbook, a dialog pops up saying "The workbook you opened contains automatic links..." and then asks me to select 'Yes' to update with changes made to other workbook or 'No' to keep existing info. Yes will be selected everytime so....
Is there code I can use on workbook_open() to automatically select yes everytime without seeing the dialog box??
 
Set not to update links (Edit>Links), in ThisWorkbook module add
Code:
Private Sub Workbook_Open()
Me.UpdateLink Name:=ThisWorkbook.LinkSources
End Sub

combo
 
Combo

The only options I have in (Edit>Links) is Update Now, Open Source, Change Source. How do I set not to update links?
 
At least in xp there's a button on the bottom-left of the 'links' dialog, however its caption is rather messy...

combo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top