Range("A1").Select
l = Sheets("Sheet1").Range("A" & Rows.Count).End(xlUp).Row
For l = l To 1 Step -1
With Range("A" & i)
Selection.Hyperlinks(1).Follow
End With
Next l
in my excel a1 to a20 have hyperlink
i want to open all the web pages at the same time
a1 t0 a20 is not constant
l = Sheets("Sheet1").Range("A" & Rows.Count).End(xlUp).Row
For l = l To 1 Step -1
With Range("A" & i)
Selection.Hyperlinks(1).Follow
End With
Next l
in my excel a1 to a20 have hyperlink
i want to open all the web pages at the same time
a1 t0 a20 is not constant