Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Saved from a similar question:
You can toggle the setting (user by user, though) via: Tools|Options|Edit Tab. There's a checkmark for "ask to update automatic links" But this means that you suppress the question--the links still get updated. This setting is for the individual user--and affects all their workbooks. If you want more control: Try creating a dummy workbook whose only purpose is to open the original workbook with links updated: Kind of like: Option Explicit Sub auto_open() Workbooks.Open Filename:="c:\my documents\excel\book2.xls", UpdateLinks:=1 ThisWorkbook.Close savechanges:=False End Sub Then you open the dummy workbook and the links will be refreshed. (read about that UpdateLinks argument in VBA's help.) " wrote: A workbook of mine, Workbook1, links to another workbook, Workbook2, that is stored elsewhere. Whenever I open Workbook1, I always get the following message box: This workbook contains links to other data sources If you update the links, Excel attempts to retrieve the latest data. If you do not update the links, Excel uses the previous information. Update Button Don't Update Button Help Button I don't want this message box to appear when Workbook1 is opened. Is there a way to disable this message for Workbook1, so that anyone who uses Workbook1 (or a copy of Workbook1) will not have to respond to the prompt? Can it be done using excel built-in features? If not, can it be done using vba code? Thanks for your time and consideration folks. Michael -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
disable spell check pop-up message | Excel Programming | |||
Disable Message Prompt in VBA | Excel Programming | |||
enable disable macro message | Excel Programming | |||
disable Warning Message | Excel Programming | |||
disable pivottable refresh message | Excel Programming |