i tried to compile excel VBA to make text in column A with hyperlinks to URL found in column D
the range is formatted as table and the name is T_RAW
any ideas how to fix this or what other approach i can go with ?
Sub update()
Dim row As Range
Dim tbl As ListObject
Set tbl = ActiveSheet.ListObjects("T_RAW")
For Each row In [T_RAW].Rows
With tbl
.Hyperlinks.Add Anchor:=row.Columns(1), _
Address:=row.Columns(4), _
ScreenTip:=row.Columns(1), _
TextToDisplay:=row.Columns(1)
End With
Next
End Sub
unfortunately i get
for the row
For Each row In [T_RAW].Rows
Bookmarks