Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default workbook contains automatic links

Is there a way to suppress or automatically answer the window which pops up:

"This workbook contains automatic links to infromation in another workbook.
Do you
want to update this workbook which changes...... To update .... click
yes....To keep .... clic no"


REX


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,758
Default workbook contains automatic links

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.)

And xl2002 added an option that allows you to have more control:
Edit|links|startup prompt button.
check the "don't display the alert and update links"

T-Rex wrote:

Is there a way to suppress or automatically answer the window which pops up:

"This workbook contains automatic links to infromation in another workbook.
Do you
want to update this workbook which changes...... To update .... click
yes....To keep .... clic no"

REX


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Prompt user on automatic updates for Workbook Links Rob Moore Excel Discussion (Misc queries) 0 February 10th 09 02:43 PM
automatic links James Excel Discussion (Misc queries) 1 August 19th 08 05:10 PM
Automatic links message when opening a workbook pgarcia Excel Discussion (Misc queries) 2 March 8th 07 10:53 PM
Removing automatic links to information in another workbook Sameer Excel Discussion (Misc queries) 1 October 4th 06 02:10 PM
automatic links Monty Links and Linking in Excel 2 August 4th 06 02:57 PM


All times are GMT +1. The time now is 04:10 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"