Using VBA I need to open a number of files, do what ever I need to do (i.e. update a formula) and close it again.
This all works well, but I would like to be able to decide if the workbook I am opening should update external links or not. This should be done without being shown the dialogue box.
The files are opened using:
I expect that I can add an other argument but am uncertain how.
/Soren
This all works well, but I would like to be able to decide if the workbook I am opening should update external links or not. This should be done without being shown the dialogue box.
The files are opened using:
Code:
Workbooks.Open Filename:=arrFiles(i)
I expect that I can add an other argument but am uncertain how.
/Soren