
Originally Posted by
AdamParker
Hello,
I have a "launcher" workbook that contains a lot of formulas linked to other worksheets.
One of the workbooks that it is linked to requires some manipulation...
Every day this workbook is replaced with a fresh query, just a dump of some data. Everytime I run the macro that opens this workbook, the links in my launcher workbook turn to #REF because the sheets that the macro creates have not been created yet... even though in just a few seconds they will be available... (the macro just produces a bunch of pivot tables, these links point to these worksheets that the pivot tables reside on)
When I open the workbook I am using UpdateLinks:=False but it's not working...
Is there anyway that I can suppress the updating of these links so that I can run the macro that opens the file and processes it safely?
Any help would be appreciated,
Adam
Hi Adam,
Maybe you can try Updatelinks:=0
Like this
Set wbOpen = Workbooks.Open(Filename:=Mypath & excelfile, UpdateLinks:=0
Thanks, Mike
Bookmarks