VBA Macro to Ask User to Browse for Excel File to Open

ekfasy

New Member
Joined
May 16, 2016
Messages
11
Hello,

I'm trying to write vba code that will ask the user to browse for a certain excel spreadsheet on their computer, then open that file. Is this possible?

I currently have it set up to ask the user to input the file name to open it, but that requires the user to make no errors in their typing...which is not reliable.

Any suggestions would be much appreciated.

Thanks in advance!
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
I did something similar in the past, I'll show you some of what I used and hopefully you can amend it to fit your needs:
Code:
Sub Openit()

Dim YESorNO As String
myPath = ***location of the file****
myFile = Dir(myPath & "*.*",vbNormal)

Do While myFile<> ""
YESorNO = MsgBox("Do you wish to open " & myFile, vbYesNo)

If YESorNO = vbYes Then
   Workbooks.Open myPath & myFile
Exit Sub
ElseIf YESorNO = vbNo Then
Loop

End If
 
Last edited:
Upvote 0
Seguin85,

Thank you so much! Would this still work if all of the users referred to their own personal documents folder located on their desktop, or would I have to set up a shared folder on the drive and use that location to input into the coding in order to prevent the users from having to change the file location themselves?
 
Upvote 0
Hello,

I'm trying to write vba code that will ask the user to browse for a certain excel spreadsheet on their computer, then open that file. Is this possible?

I currently have it set up to ask the user to input the file name to open it, but that requires the user to make no errors in their typing...which is not reliable.

Any suggestions would be much appreciated.

Thanks in advance!
I did something similar in the past, I'll show you some of what I used and hopefully you can amend it to fit your needs:
Code:
Sub Openit()

Dim YESorNO As String
myPath = ***location of the file****
myFile = Dir(myPath & "*.*",vbNormal)

Do While myFile<> ""
YESorNO = MsgBox("Do you wish to open " & myFile, vbYesNo)

If YESorNO = vbYes Then
   Workbooks.Open myPath & myFile
Exit Sub
ElseIf YESorNO = vbNo Then
Loop

End If
I'm not convinced that will do the trick. If I have understood correctly then try this:

Code:
Sub OpenFileDialog()
' Defines variables
Dim TargetFile As String


' Open dialogue box to browse for file
TargetFile = Application.GetOpenFilename _
(Title:="Please choose a file to open", _
FileFilter:="Excel Files *.xls* (*.xls*),")


' If no file is selected then...
If TargetFile = False Then
    ' Display message box with an error
    MsgBox "No file selected.", vbExclamation, "Sorry!"
    ' Exit the macro
    Exit Sub
' Else if a valid file is selected then...
Else
    ' Open the selected workbook
    Workbooks.Open FileName:=TargetFile
End If


End Sub
 
Upvote 0
You could try using Application.GetOpenFilename.
 
Upvote 0
Fishboy,

Your coding worked perfectly! Except... when I click on the .xls file that I want to open, an error pops up saying "Type mismatch" and does not open up the file. Any ideas on what the problem is?

Thank you!!!!!
 
Upvote 0
Hello,

I'm trying to write vba code that will ask the user to browse for a certain excel spreadsheet on their computer, then open that file. Is this possible?

.............
application.GetOpenFilename() allows a user to browse for files, select and get the full file name including the path (doesn't open the file). Assign this to a variable of your choice and use workbooks.open to open the file.
Rich (BB code):
Sub browseFileToOpen()
Dim myFile As Variant 'Using string will evaluate to an error
'Restrict browsing other files - Only excel files
myFile = Application.GetOpenFilename("Excel Files (*.xl*),*.xl*", , "Choose File", "Open", False)
If myFile = False Then
'Do nothing
Else
Workbooks.Open (myFile)
End If
End Sub
 
Last edited:
Upvote 0
Mathematician,

Thank you so much! It works now :)

And thank you to everyone who also helped and gave input- I really appreciate it!!!
 
Upvote 0
Fishboy,

......................................... "Type mismatch" .................................. Any ideas on what the problem is?

Thank you!!!!!

String is the reason behind that error as this is an array of filenames. Use variant instead of string (Dim TargetFile as Variant)

 
Upvote 0
Application.GetOpenFilename retutns an array only if MultiSelect argument is set to True.

The type mismatch in this case can be avoided by replacing False with "False".
Code:
If TargetFile = "False" Then
 
Upvote 0

Forum statistics

Threads
1,215,457
Messages
6,124,941
Members
449,197
Latest member
k_bs

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top