Created
November 28, 2015 12:34
-
-
Save honzapav/1ed434985ea9133679d8 to your computer and use it in GitHub Desktop.
VBA extract URL from link
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub ExtractHL() | |
Dim HL As Hyperlink | |
For Each HL In ActiveSheet.Hyperlinks | |
HL.Range.Offset(0, 1).Value = HL.Address | |
Next | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment