hi Sirishgreen,
You can use the hyperlink function. See xl help.
in VBA Code you can try:![]()
=HYPERLINK("http://example.microsoft.com/report/budget report.xls", "Click for report")
![]()
Private Sub Worksheet_Activate() With Worksheets(1) .Hyperlinks.Add .Range("E5"), "http://example.microsoft.com" End With End Sub
Bookmarks