Thank you for your suggestions
If I add this statement, how should I add it?
I have 20 files to be opened one by one, I show 2 examples as below, which
one should I choose to add this statement?
Do you have any suggestions?
Thank for any suggestions
Eric
[Case 1]
Sub OpenFile()
Application.DisplayAlerts = False
Workbooks.Open Filename:="E:\1.xls", UpdateLinks:=3
Workbooks.Open Filename:="E:\2.xls", UpdateLinks:=3
...
End Sub
[Case 2]
Sub OpenFile()
Workbooks.Open Filename:="E:\1.xls", UpdateLinks:=3
Application.DisplayAlerts = False
Workbooks.Open Filename:="E:\2.xls", UpdateLinks:=3
Application.DisplayAlerts = False
...
End Sub
> I wonder if using
>
[quoted text clipped - 20 lines]
> > Thank in advance for any suggestions
> > Eric
Barb Reinhardt - 13 Jun 2007 12:54 GMT
I'd try it with Case 1.
> Thank you for your suggestions
>
[quoted text clipped - 48 lines]
> > > Thank in advance for any suggestions
> > > Eric