About 280,000 results
Open links in new tab
  1. Excel VBA: Open Windows File Explorer using VBA

    Jul 16, 2011 · Hi All I am using Excel 2010, and have written some code that automatically creates and saves some files down to a specific location. Is there code that I can use to open …

  2. VBA macro to open explorer and select file - MrExcel

    Mar 1, 2005 · Sub Open_Explorer () Dim Folder As String Folder = ActiveCell (1, 2).Value Shell "C:\Windows\explorer.exe /select, Folder" & ActiveCell (1, 1).Value & ".pdf", …

  3. VBA to open a file. | MrExcel Message Board

    Aug 12, 2020 · I would like to open Windows Explorer. Use that to go to some path to find a file of interest to open. The file name could be different each time. The file...

  4. Open Windows Explorer via VBA | MrExcel Message Board

    Apr 19, 2005 · I can open Explorer via VBA using the following: Sub Open_Explorer() Dim retVal retVal = Shell("explorer.exe", vbNormalFocus) End Sub My question is: how do I specify a …

  5. Open a Windows Explorer Window using VBA.... - MrExcel

    Feb 15, 2002 · What's the code for opening a Windows Explorer window from within an Excel Macro?

  6. How do I HYPERLINK to a FOLDER? | MrExcel Message Board

    Aug 15, 2003 · I want to click on a cell and have it open a certain FOLDER in Windows Explorer. I know how to right click on a cell, choose HYPERLINK and browse for a particular file in that …

  7. VBA to close windows explorer window - MrExcel

    Apr 16, 2016 · Hi! I need to open windows explorer to access a file, and it would be nice to have a macro in that file to automatically close the explorer window (This is not Internet-explorer!) I …

  8. Opening explorer and capturing file location into access form

    May 14, 2013 · Hi All, We have a DB that's used for logging work into our department, on the form thats used for logging a new job I want to put a field that you can store a file path from win …

  9. How to Open a folder in windows explorer with Excel vba

    Mar 2, 2007 · I'm sure this is really easy, but I'm learning and not having luck in the search option for previous posts. Thanks for your patience in advance. I want to open a windows explorer …

  10. VBA: To open and close Windows Explorer folder - MrExcel

    Jun 26, 2004 · Morning, I'm using the following line to open an Explorer folder:- Shell "explorer.exe" & " " & SharepointFileURL, vbNormalFocus Some code runs shortly after and to …