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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Automatically accepting msgs

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Good Morning - I have a workbook which contains automatic links. So, when I start the workbook it says, "The workbook you opened contains automatic links to information in another workbook. Do you want to update this workbook with changes made to the other workbook?"

I always click Yes. Is there anyway to automatically do this?
 
Good Morning, Chodo

Try adding this code to the workbook(s) containing the links:

Private Sub Workbook_Open()
Application.AskToUpdateLinks = False
End Sub

:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top