Forum Discussion
Gilgamesh1964
Mar 03, 2022Brass Contributor
Using VBA to find cells that contain a hyperlink
Hello, I have a little bit of code that I need some assistance with. I am searching for all hyperlinks and I want to get every cell that contains a hyperlink I have the following that gives me...
- Mar 03, 2022
The Range property of a hyperlink represents the cell that contains the hyperlink.
Dim LinkCount As Long Dim URL As String dim Rng as Range For LinkCount = 1 To ActiveSheet.Hyperlinks.Count URL = ActiveSheet.Hyperlinks(lngLinkCount).Address Set Rng = ActiveSheet.Hyperlinks(lngLinkCount).Range ' If you want to know the cell address, use Rng.Address Next LinkCount
HansVogelaar
Mar 03, 2022MVP
The Range property of a hyperlink represents the cell that contains the hyperlink.
Dim LinkCount As Long
Dim URL As String
dim Rng as Range
For LinkCount = 1 To ActiveSheet.Hyperlinks.Count
URL = ActiveSheet.Hyperlinks(lngLinkCount).Address
Set Rng = ActiveSheet.Hyperlinks(lngLinkCount).Range
' If you want to know the cell address, use Rng.Address
Next LinkCount
Gilgamesh1964
Mar 03, 2022Brass Contributor
Thank You
Works great
Works great