View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
JeffFinnan JeffFinnan is offline
external usenet poster
 
Posts: 9
Default Auto Select a file not knowing its specific name

Dim WB As Workbook
For Each WB In Workbooks
If WB.Name Like "Export*" Then
WB.Activate
Exit For
End If
Next WB


========================
Chip,

It did the trick. Thanks a bunch.

Jeff