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!

Disable link prompt from showing up

Status
Not open for further replies.

n00blar

MIS
Aug 19, 2003
38
0
0
US
Hello,

I have a problem when Excel prompts the user to "Continue" or "Edit Links".
Is there a way to disable this prompt?

Here's what I've tried:
1. TOOLS - OPTIONS - EDIT - unchecked ASK TO UPDATE LINKS (Doesn't work, I
still get prompted to "continue" or "edit links" when I open a spreadsheet
with links.

2. I've used Personal.xls with the following macros:
' Begin Code to close Excel without save dialog
Sub Auto_Open()
For Each wb In Workbooks
wb.Saved = True
Next

For Each wb In Workbooks
wb.Saved = True
Next
' End Code to close Excel without save dialog

'turn off warnings
Application.DisplayAlerts = False
Application.AskToUpdateLinks = False
End Sub

' Begin Code to close Excel without save dialog
Sub Workbook_Open()
For Each wb In Workbooks
wb.Saved = True
Next

For Each wb In Workbooks
wb.Saved = True
Next
' End Code to close Excel without save dialog

'turn off warnings

Application.DisplayAlerts = False
Application.AskToUpdateLinks = False

End Sub


None of this code seems to do it either.

Anyone knows how to effectively disable these link prompts from showing up?

Thanks.
 
Thanks for your suggestion, but that only works on a single worksheet; I need this as a global setting, that's why I tried to write code to disable this setting completely.

Thanks.
 
My suggestion does indeed only work on a single workbook].
Do you want the links updated with no prompt or not updated and no prompt?
A bit perplexed by
"Continue" or "Edit Links".
I get buttons to "update" "don't update" "help"
Is the message when you open the workbook or what?


Gavin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top