Range("A1").Select
M = Sheets("Sheet3").Range("A" & Rows.Count).End(xlUp).Row
For M = M To 1 Step -1
With Range("A" & M)
.Hyperlinks(1).Follow
End With
Next M
using this code me open the url
how i save that sites and repoen in excel.
i want to copy a75 (from repoend in excel) and past in main worksheet c cell
is it possible?
M = Sheets("Sheet3").Range("A" & Rows.Count).End(xlUp).Row
For M = M To 1 Step -1
With Range("A" & M)
.Hyperlinks(1).Follow
End With
Next M
using this code me open the url
how i save that sites and repoen in excel.
i want to copy a75 (from repoend in excel) and past in main worksheet c cell
is it possible?