find a pattern in list of filenames (simple sytax?}

ElBombay

Board Regular
Joined
Aug 3, 2005
Messages
196
Hi board,

I've opened a file with data I want to transfer to a template-file. When the import is successfully processed, I 'Save As' the template file using the name of the current source. The source file must of course first be closed. To get the name of the file which must first be closed, I've written the following Function. I need simple syntax help please on the line w/ "?????." Users could theoretically use alt-Tab to see the name and enter it to an input box but I try to minimize liveware interface

/*
Function zReadAllOpenXLSs() As String 'OpenWorkbooks As String)
'
' Find filename matching a YYMMDDXX pattern
' Added to read Source W/B for imported puzle
' 2/20/18 at St. John's Hospital
'
Dim x As Long
Dim cPattern As String
Dim OpenWorkbooks() As String

ReDim OpenWorkbooks(1 To Workbooks.Count)

'Store Names Here
For x = 1 To Workbooks.Count
OpenWorkbooks(x) = Workbooks(x).Name

Next x

'Close Workbooks Here
For x = 1 To Workbooks.Count
cPattern = Left(OpenWorkbooks(x), 8)
If cPattern Like "999999XX" Then ' ???????
zReadAllOpenXLSs = OpenWorkbooks(x)
Exit For
End If
Next x

End Function
*/
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
A little searching gave me this workable solution but I would still be interested in checking for characters in the 7th and 8th positions for future generic use. Thanks for the attention.

Code:
'----------------------------------------------------------------------------
Function zReadAllOpenXLSs() As String 'OpenWorkbooks As String)
'
' Find filename matching a YYMMDDXX pattern
' Current version returns 1st filename starting w/ 6 numerals.
' Added to read Source W/B for imported puzle
 2/20/18 at St. John's Hospital
'
Dim x                            As Long
Dim cPattern As String
Dim OpenWorkbooks()     As String

ReDim OpenWorkbooks(1 To Workbooks.Count)
    
    'Store Names Here
    For x = 1 To Workbooks.Count
        OpenWorkbooks(x) = Workbooks(x).Name

    Next x

    'Identify Workbook Here
    For x = 1 To Workbooks.Count
        cPattern = Left(OpenWorkbooks(x), 6)
        If cPattern Like "######" Then                  ' YYMMDD pattern
            zReadAllOpenXLSs = OpenWorkbooks(x)
            Exit For

        End If
    Next x

End Function
 
Upvote 0
I initially posted this question to save myself some time. As long as I got around to piecing together & testing the fairly basic elements needed, I thought I should post the results for future reference. I certainly owe the board for all the time it's saved me over the years, as well as for a few thing I never would've developed on my own.

Code:
'----------------------------------------------------------------------------
Sub Test_ReadXLS()
'
' If null-string is returned, set a default and/or disply error msg.
' 3/11/18
'
Dim cValue As String

    cValue = zReadAllOpenXLSs("######", 6)

End Sub
'----------------------------------------------------------------------------
Function zReadAllOpenXLSs(cTemplate As String, iLen As Integer) As String
'
' Find filename matching a YYMMDDXX pattern
' Current version returns 1st filename starting w/ 6 numerals.
' Added to read Source W/B for imported puzle;
'   Parms set to run generically.
' 3/11/18
'
Dim x                   As Long
Dim cPattern            As String
Dim OpenWorkbooks()     As String

ReDim OpenWorkbooks(1 To Workbooks.Count)
    
    'Store all open filenames
    For x = 1 To Workbooks.Count
        OpenWorkbooks(x) = Workbooks(x).Name

    Next x

    'Find source-workbook
    For x = 1 To Workbooks.Count
        cPattern = Left(OpenWorkbooks(x), iLen)
        If cPattern Like cTemplate Then
            zReadAllOpenXLSs = OpenWorkbooks(x)
            Exit For

        End If
    Next x

End Function
 
Upvote 0
Another way:

Code:
Sub Test_ReadXLS()
  Dim wkb As Workbook
  
  Set wkb = GetWorkbook("######*")
  If Not wkb Is Nothing Then
    ' do something useful
  End If

End Sub

Function GetWorkbook(sPatt As String) As Workbook
  Dim wkb           As Workbook

  For Each wkb In Workbooks
    If wkb.Name Like sPatt Then
      Set GetWorkbook = wkb
      Exit Function
    End If
  Next wkb
End Function
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,916
Members
449,093
Latest member
dbomb1414

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