Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a set of code i can enter into a document that will open all linked
documents. I don't want to just update but actually open all documents linked to the main document. Is there a way to do this? Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Place code like this in the Thisworkbook module of your workbook
Private Sub Workbook_Open() Dim alinks as Variant aLinks =ThisWorkbook.LinkSources(xlExcelLinks) If Not IsEmpty(aLinks) Then For i = 1 To UBound(aLinks) on Error Resume Next Application.workbooks.Open alinks(i) if err.number < 0 then _ msgbox alinks(i) & " could not be opened" on Error goto 0 Next i End If Thisworkbook.Activate End Sub Placed in the Workbook_Open event. -- Regards, Tom Ogilvy "Greg H." wrote: Is there a set of code i can enter into a document that will open all linked documents. I don't want to just update but actually open all documents linked to the main document. Is there a way to do this? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
ON OPEN VBA Code input incorrectly now excel sheet wont open | New Users to Excel | |||
Links are different depending on how you open file. | Excel Discussion (Misc queries) | |||
Need VB code for workbook open to open a link | Excel Discussion (Misc queries) | |||
Updating Links on Open | Excel Programming | |||
Open File with Links? | Excel Programming |