Hello
I have a link in excel but it not activate.
So for the moment i press F2 and hit enter that way the hyperlinks works.
Now i want to do this with a Macro:
But don't know the code for just activate it so if anyone can help me with the red part that would be great.
Kind regards,
Lesly
I have a link in excel but it not activate.
So for the moment i press F2 and hit enter that way the hyperlinks works.
Now i want to do this with a Macro:
Code:
Dim LastRow As Long, i As Long
LastRow = Sheets("Sheet1").Range("A" & Rows.Count).End(xlUp).Row
For i = 2 To LastRow
'
If Cells(i, 2).Value <> "" Then
[COLOR=#ff0000]ActiveCell.Hyperlinks
[/COLOR]
End If
Next i
End Sub
But don't know the code for just activate it so if anyone can help me with the red part that would be great.
Kind regards,
Lesly