» List all the workbook links in a workbook using VBA in Microsoft Excel
CATEGORY - Links in VBA
VERSION - All Microsoft Excel Versions
Place the code below into the standard module
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:
Recommended Books:
- Rich Dad's Guide to Investing: What the Rich Invest in, That the Poor and the Middle Class Do Not!
- Business Analysis with Microsoft Excel (2nd Edition)
- VBA for Modelers: Developing Decision Support Systems Using Microsoft« Excel
- Seven Habits Of Highly Effective People
- Investing in Real Estate, Fourth Edition
- Advanced modelling in finance using Excel and VBA
No comments have been submitted.

