Created
March 4, 2021 07:07
-
-
Save DQNEO/08a7c859977e80d68123ccc08827b243 to your computer and use it in GitHub Desktop.
Extract Hyperlink URLs
This file contains 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 getHyperLinkURLs() | |
Range(Range("B1"), Range("B1").End(xlDown)).Select | |
Dim cell As Range | |
For Each cell In Selection | |
cell.Offset(0, 1).Value = cell.Hyperlinks(1).Address | |
Next | |
End | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment