April 2006
Beginner
1114 pages
98h 16m
English
workbook.UpdateLink([Name], [Type])
Updates a link in a workbook.
|
Argument |
Settings |
|---|---|
|
|
The name of the link to update as returned by the |
|
|
The |
The following code updates each of the Excel links in a workbook:
Dim link, linkSources
linkSources = ThisWorkbook.linkSources(xlExcelLinks)
If IsArray(linkSources) Then
For Each link In linkSources
ThisWorkbook.UpdateLink Name, XlLinkType.xlLinkTypeExcelLinks
Next
End IfRead now
Unlock full access