Updating Links, Ignore workbooks that are open

chris186h

Board Regular
Joined
Mar 18, 2015
Messages
111
Hello all. In my workbook i have a button to update the workbook which i will press several times whilst it is open as the files regally change. It all works well unless i have one of the workbooks open. Is there a way for vba to check to see if the workbook is open, if so then it will skip the update and then move onto the next update.
I am currently getting an error if the workbook is already open so i am trying to avoid this
Thankyou for your help


Code:
 ActiveWorkbook.UpdateLink Name:="K:\Plan.xlsx", Type:= _        xlExcelLinks
        ActiveWorkbook.UpdateLink Name:="K:\Earlies.xlsm", Type:= _
        xlExcelLinks
    ActiveWorkbook.UpdateLink Name:="K:\Lates.xls", Type _
        :=xlExcelLinks
    ActiveWorkbook.UpdateLink Name:="K:\Nights.xls", _
        Type:=xlExcelLinks
    ActiveWorkbook.UpdateLink Name:="K:\Rota.xlsm", _
        Type:=xlExcelLinks
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.

Forum statistics

Threads
1,215,216
Messages
6,123,669
Members
449,114
Latest member
aides

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top