Hi,
how do I read hyperlink when cell is like this:
There is no url but when I hover over the text, it shows the url. How do I get the URL?
Hi,
how do I read hyperlink when cell is like this:
There is no url but when I hover over the text, it shows the url. How do I get the URL?
Function GetURL(cellAddress as string) As String
GetURL = Range(cellAddress).Hyperlinks(1).Address
End Function
in your invoke VBA activity, pass in the cell where you want to read the hyperlink
assign output to an object variable e.g. “output”
print output using output.tostring
My example:
Excel:
workflow:
Thank you! Now how do I do this if I have like 1000 rows? Because I don’t want to do this like 1000 times. For example I have range A2:A1000 and I have to do this for every row (cell)
just use a foreach loop
here enumerable.Range(2,11) means start at row 2 and end at row 12
also, change the macro.txt to this to handle cells with NO hyperlinks (will output “No Link” if cell has no hyperlink)
Function GetURL(cellAddress as string) As String
On Error goto ErrorHandling:
GetURL = Range(cellAddress).Hyperlinks(1).Address
Exit Function
ErrorHandling:
GetURL = "No Link"
End Function
macro.txt (194 Bytes)
test.xlsx (9.2 KB)
TestGetLink.xaml (7.4 KB)
if you have A2:A1000, just do enumerable.Range(2,999)
and for VBA parameters do {“A”+rowNumber.toString}
Thank you so much! You helped me a lot.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.