Hello
I am using the following code
What I would like to do is stipulate a default path for the GetopenFilename.
The default path I'm after is :-
Can anybody help with this please?
Thanks Duncan
I am using the following code
Rich (BB code):
Private Sub OpenFile()
Dim fileName
fileName = Application.GetOpenFilename("Ratings Sheet (*.xls),*.xls")
If fileName <> "False" Then
Application.ScreenUpdating = False
Workbooks.Open fileName, Format:=2
Other Code
End Sub
What I would like to do is stipulate a default path for the GetopenFilename.
The default path I'm after is :-
Rich (BB code):
"D:\The Ratings\Sheets"
Thanks Duncan