E
Edward
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 Autpen()
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.
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 Autpen()
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.