owentmoore
Technical User
I have an excel macro that opens another workbook as part of the code. This works fine for the majority of my workbooks but for one workbook there are links in it. This means that whenever it opens it asks if I want to update the links - I don't - but I must now be present anytime the workbook opens to click no.
I have tried the following code which has not worked...
Does anyone know how I can avoid this dialog box popping up?
I have tried the following code which has not worked...
Code:
Application.DisplayAlerts = False
...my code to open workbook...
Application.DisplayAlerts = True
Does anyone know how I can avoid this dialog box popping up?