View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default List of open workbooks

Try something along the lines of

Dim WB As Workbook
For Each WB In Application.Workbooks
Me.ListBox1.AddItem WB.Name ' or WB.FullName
Next WB



"anamarie30" wrote in message
...
I need to add to my main workbook a listbox that show or contain the names
of
workbooks that user had open in the computer. The purpose of this is allow
the user to select one workbook instead of write the name of it for doing
a
performance analysis. How can I do that?