
Tips.Net > ExcelTips Home > Macros > Updating Automatically When Opening Under Macro Control
Summary: When you open a workbook that contains links to another data source, Excel asks if you want to update those links. This is great if you are opening the workbook manually, but not so great if the workbook is being opened by a macro. This tip discusses ways you can turn off the prompting so the macro will open and process the workbook with the delay. (This tip works with Microsoft Excel 97, Excel 2000, Excel 2002, and Excel 2003.)
Graham wrote about a glitch he was having with his Excel automation efforts. It seems that a scheduled macro--which would run just fine--would open another workbook in order to update it. He could not get the macro to open the workbook without it displaying a notice asking if the automatic links in the workbook should be opened. The question halted the macro while it waited for Graham's response, and he was looking for a way for the links to be updated automatically, without the bothersome notice.
There are several ways this problem can be approached. First, you can configure Excel so that it doesn't ask the question. This option affects all workbooks opened on the system:
With the check box cleared, Excel no longer asks and all links are updated automatically.
If you are using Excel 2002 or Excel 2003, and you want an option that doesn't affect all workbooks, you can follow these steps:
Now the workbook can be opened without Excel asking about updates. This, of course, affects just this workbook, and it affects it regardless of how it is opened. In other words, it will affect how the workbook is opened by the macro as well as when it is opened by a user.
Perhaps the best approach is to simply make a small change in your macro--the one that opens the workbook containing links. There is a good chance that the code to open the workbook looks something like this:
Workbooks.Open FileName:="MyWorkbook.xls"
If this is the case, change the line to this:
Workbooks.Open FileName:="MyWorkbook.xls", UpdateLinks:=3
This UpdateLinks property is optional, but without it the "Do you want to update links" dialog box is displayed. If you include the property with the setting shown, then Excel will update both remote and external references in the workbook as it is opened.
Tip #2899 applies to Microsoft Excel versions: 97 2000 2002 2003
Save Time! You can have this tip (and several hundred just like it) in the ExcelTips annual archives. Imagine having over 400 tips available at your fingertips, in each annual volume.
You can put times into a worksheet, but then what? Need to do calculations with times? How about working with elapsed time? Don't be confused; learn how easy it can be. (more information...)
Ask an Excel Question
Make a Comment
ExcelTips FAQ
ExcelTips Premium
Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips
Advertise on the
ExcelTips Site