i want to open a explorer path from inside excel.
Thanks Simon
i want to open a explorer path from inside excel.
Thanks Simon
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
Last edited by corinereyes; 10-11-2007 at 12:40 PM.
Corine
I dont think you can hyperlink to a folder?
only letting me create a hyperlink to a file.
any ideas?
Hi Sirishgreen,
You can use the hyperlink to open a folder or file.
In the worksheet, enter any file or folder name in a cell, then right click on that, then Select Hyperlink. You can browse where the file of folder is located then click Ok.
You can read more about Hyperlink in the excel help.![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks