+ Reply to Thread
Results 1 to 4 of 4

Open exlorer path from inside excel!!

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-21-2007
    Posts
    126

    Open exlorer path from inside excel!!

    i want to open a explorer path from inside excel.

    Thanks Simon

  2. #2
    Forum Contributor corinereyes's Avatar
    Join Date
    12-02-2003
    Location
    Philippines
    MS-Off Ver
    MS Excel 2016
    Posts
    520
    hi Sirishgreen,

    You can use the hyperlink function. See xl help.

    =HYPERLINK("http://example.microsoft.com/report/budget report.xls", "Click for report")
    in VBA Code you can try:

    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

  3. #3
    Forum Contributor
    Join Date
    09-21-2007
    Posts
    126

    sorry doesnt work

    I dont think you can hyperlink to a folder?

    only letting me create a hyperlink to a file.

    any ideas?

  4. #4
    Forum Contributor corinereyes's Avatar
    Join Date
    12-02-2003
    Location
    Philippines
    MS-Off Ver
    MS Excel 2016
    Posts
    520
    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.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1