ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   File name seach within open filetype (https://www.excelbanter.com/excel-programming/288681-file-name-seach-within-open-filetype.html)

Andrew[_27_]

File name seach within open filetype
 
Ladies & Gents,

I use a macro to open a number of files with a similar name, format & save
them, then open a number of different files with simlar names, format & save
those. The files are named *A.csv, and *B.csv. All of the file reside in
the same folder, but that folder changes regularly, and is not the same
folder which holds the macro. The code below will open mulitple files with
a similar type;

Sub Look_For_File_Type() ' Test 3
Dim fn As Variant, f As Integer
fn = Application.GetOpenFilename(" Text files,*.csv", 1, "Select One Or
More Files To Open", , True)
If TypeName(fn) = "Boolean" Then Exit Sub
For f = 1 To UBound(fn)
Debug.Print "Selected file #" & f & ": " & fn(f)
Workbooks.Open fn(f)
MsgBox ActiveWorkbook.Name, , "Active Workbook Name:"
ActiveWorkbook.Close False ' close the active workbook without
saving any changes
Next f
End Sub

How do I make the code search for all *A.csv files?



Thanks in advance.

Andrew




All times are GMT +1. The time now is 12:40 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com