Hello All,
Hope someone here will be able to tell me how to activate URL link in a range of cells using VBA.
I tried to record the macro, but all it gives me is
Sorry I had to replace the words with * as it is live and sensitive information. And each cell will have a different link.
I tried
And also
Nothing works so far.
Please let me know how to do this.
Thanks for your help.
Asad
Hope someone here will be able to tell me how to activate URL link in a range of cells using VBA.
I tried to record the macro, but all it gives me is
Code:
Sub Macro3()'
' Macro3 Macro
'
'
Range("N10").Select
ActiveCell.FormulaR1C1 = _
"https://****.com.au/****/***/template/generic/******/"
Range("N45").Select
End Sub
Sorry I had to replace the words with * as it is live and sensitive information. And each cell will have a different link.
I tried
Code:
Sub Test()For Each Cell In Range("N49:N50")
Cell.FormulaR1C1 "=" & Cell.Value
Next
End Sub
Code:
Sub Test()For Each Cell In Range("N49:N50")
Cell.Select
ActiveCell.FormulaR1C1 "=" & Cell.Value
Next
End Sub
Nothing works so far.
Please let me know how to do this.
Thanks for your help.
Asad