I'm not sure what you're expecting with the wildcard.
 
perhaps you could give specific examples?
 
The Workbook object contains all of the open workbooks. 
You can loop through the Workbook object and save the filenames in a variable 
or array, like:
 
Option Explicit
Sub ListOpenWorkbooks()
    Dim wb As Workbook
    Dim wbArray
    
    ReDim wbArray(0)

    For Each wb In Workbooks
        ReDim Preserve wbArray(UBound(wbArray) + 1)
        wbArray(UBound(wbArray)) = wb.Name
    Next wb

End Sub

if you're wanting to assign all filenames with a common name structure to a 
single variable, then you're either going to have to use an array or 
concatenate the names.

also note:
in your example:
File1 =ForecastLastUpdated_*.xls*
File2 = ForecastLastUpdated_ReferenceInformation*.xls*

then name: 
ForecastLastUpdated_ReferenceInformation*.xls*
also is a match for:
ForecastLastUpdated_*.xls*

Paul
-----------------------------------------
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-----------------------------------------

 From: Nitin Balodi <nitinbal...@live.com>
>To: "excel-macros@googlegroups.com" <excel-macros@googlegroups.com> 
>Sent: Thursday, September 4, 2014 1:58 AM
>Subject: $$Excel-Macros$$ Assign already open workbooks name to variables 
>using wildcard
>  
>
>
> 
>Hi Experts,
>
>I require your help in another problem. I have n excel files already opened 
>but want to assign file name to variables like
>
>File1 = ForecastLastUpdated_*.xls*
>File2 = ForecastLastUpdated_ReferenceInformation*.xls*
>
>Highlighted in red are file name pattern and will be using these variables to 
>perform specific functions for files. 
>
>Thanks for your help and support.
>
>Regards.
>
>
>Yours Sincerely,
>Nitin Balodi 
-- 
>Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
>=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
>https://www.facebook.com/discussexcel
> 
>FORUM RULES
> 
>1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
>Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
>quick attention or may not be answered.
>2) Don't post a question in the thread of another member.
>3) Don't post questions regarding breaking or bypassing any security measure.
>4) Acknowledge the responses you receive, good or bad.
>5) Jobs posting is not allowed.
>6) Sharing copyrighted material and their links is not allowed.
> 
>NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
>members are not responsible for any loss.
>--- 
>You received this message because you are subscribed to the Google Groups "MS 
>EXCEL AND VBA MACROS" group.
>To unsubscribe from this group and stop receiving emails from it, send an 
>email to excel-macros+unsubscr...@googlegroups.com.
>To post to this group, send email to excel-macros@googlegroups.com.
>Visit this group at http://groups.google.com/group/excel-macros.
>For more options, visit https://groups.google.com/d/optout.
>
>
>    

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.

Reply via email to