VB code to prompt user to enter file name

easy_times

New Member
Joined
Sep 24, 2002
Messages
2
Hi, I've got a macro from which I want to open another file to retrieve data from, the data source file changes name every month so I want some code that will simply prompt the user to enter the path and file name each time the macro runs? Much thanks in advance
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
This is simple but works.

<pre>
Sub openfile()
Application.Dialogs(xlDialogOpen).Show
End Sub
</pre>
 
Upvote 0
Hi easy_times,

Please try this.

<pre>
Dim strFileName As String

'Your Code here

strFileName = Application.GetOpenFilename("Microsoft Excel Files (*.xls), *.xls")
If strFileName = "False" Then Exit Sub
Workbooks.Open (strFileName)

' Your code here
</pre>
 
Upvote 0

Forum statistics

Threads
1,214,892
Messages
6,122,112
Members
449,066
Latest member
Andyg666

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