» List all the workbook links in a workbook using VBA in Microsoft Excel
CATEGORY - Links in VBA
VERSION - All Microsoft Excel Versions
Sub ListLinks()
Dim aLinks As Variant
aLinks = ActiveWorkbook.LinkSources(xlExcelLinks)
If Not IsEmpty(aLinks) Then
Sheets.Add
For i = 1 To UBound(aLinks)
Cells(i, 1).Value = aLinks(i)
Next i
End If
End Sub
Book Store:
No comments have been submitted.

