VBA: Wildcard not working with existing code

drynn

New Member
Joined
Dec 16, 2013
Messages
16
I have an interesting issue that you may be able to shed
some light on. I have a macro in spreadsheet that opens a
csv file that is in the same directory, manipulates it and
saves it to another folder. The csv file file always has
the same name and that name is hard-coded into the macro
with Workbooks.Open Filename:=ThisWorkbook.Path & "\R99DFG
PARIS (YTD).csv"
The csv file is placed there by an automated process over
which I have no control and each time the automated process
uploads a new file, it first removes the previous one
(daily). The macro has worked happily for over one year.
Now, the source has changed the file name to match an
internal requirement such that the name now takes form of
R99DFG xxxx (YTD).csv, where xxxx is always a random hex
number that I do not know in advance.
I therefore changed the line of code in my macro to
Workbooks.Open Filename:=ThisWorkbook.Path &
"\R99DFG*.csv", thinking that it would act as a wildcard
but all I get is a 'file not found' error.
I have tried with "\R99DFG" & "*" & ".csv" as I have seen
it written this way before but to no avail. Are wildcards
not accepted in Excel 2010 macros, or not acceptable with
this function?
I am more interested to find out why this does not work
than getting suggestions for an alternative piece of code
e.g. I know I could get the operator to select the file
manually during the process as an option.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Welcome to MrExcel.

You can't use wildcards in the Filename argument of the Open method. Use Dir with a wildcard to assign the file name to a variable and use that variable to open the file.
 
Upvote 0
Thanks for the speedy reply.

This is now somewhat intriguing. I did as you suggested, and I also added a msgbox before the Workbooks.Open Dir(FileName) line to check what was being used and could see that FileName was indeed correctly showing the full path with "\R99DFG*.csv" appended as required. But after OKing the msgbox, it then crashed with a could 'not find the file' error. However, the file name it gave in the error message was the full name, without the wildcard. That surely means that the file was found otherwise it could not have known the full (actual) file name because it is not set anywhere else in the code (and Workbooks.Open is the very next line of code).

The file is not open elsewhere, and if I revert to the full hard coded file name as before, it opens as required.

Am I missing something obvious
 
Upvote 0
Corny I know, but for reasons of security I cannot post the whole code. I will re-write it into a new macro and see if it displays the same error. If it does, I will post the code here and we can continue. Thanks for helping.

(Is it OK to paste the code directly into this widow?)
 
Upvote 0
Well, here is the code in its simplest form. Both the macro file and the data file are in the same directory, and it is not the root directory.

The commented line works fine; the Dir line fails.

Sub test()
Dim FileToOpen As String
'Workbooks.Open FileName:=ThisWorkbook.Path & "\R99DFG xxxx (YTD).csv"
FileToOpen = ThisWorkbook.Path & "\R99DFG*.csv"
MsgBox FileToOpen
Workbooks.Open Dir(FileToOpen)
End Sub

The VB error message is Run-time error 1004, and the full (correct) file path is shown in the message text. (I tried pasting a copy of the error pop-up but it does not work here). I do not understand how it can display the file name in the error message when it has not been defined in the code beforehand - surely it must be finding it?
 
Upvote 0
You need to assign the result of Dir to a variable first. Try (untested):

Code:
Sub Test()
    Dim FileToOpen As String
    Dim FileName As String
    FileToOpen = ThisWorkbook.Path & "\R99DFG*.csv"
    FileName = Dir(FileToOpen)
    If FileName <> "" Then
        Workbooks.Open ThisWorkbook.Path & "\" & FileName
    End If
End Sub
 
Upvote 0
Andrew,

Thanks for your help. I was clearly mis-interpreting the error message and then not using the DIR function correctly. All resloved now, thanks again.
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

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