Answer the question
In order to leave comments, you need to log in
How to pull all hyperlinks from a column?
I have a column with N number of cells.
Each cell of the column contains a hyperlink of the form:
DOWNLOAD
Accordingly, the links are different in each cell.
How to get all these links in a list?
Answer the question
In order to leave comments, you need to log in
VBA source
Here's a VBA solution for those who can use it.
Create a VBA module with the following code:
Public Function GetURL(c As Range) As String
On Error Resume Next
GetURL = c.Hyperlinks(1).Address
End Function
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question