About 205,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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", …

  4. 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 …

  5. 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 …

  6. 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?

  7. Excel VBA to Open Folder in Explorer | MrExcel Message Board

    Oct 21, 2004 · Hello, I would like to code some VBA that will open up explorer to a particular folder location and I have not been able to find any solutions. I will add a command button to …

  8. Using the browse button from within Excel to find a spreadsheet …

    Feb 19, 2025 · It's not really about the filename, it is more about if you browse to the network folder from within excel, you only see a subset of all files (regardless of filename or extension) …

  9. 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 …

  10. 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...