Code - browse open workbooks

staticbob

Well-known Member
Joined
Oct 7, 2003
Messages
1,079
Guys,

How do I code a button that will show a list of all open workbooks, and allow the user to choose one. Assigning this chosen workbook name to a string ?

Thanks
Bob
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Hi Bob,

Use the Workbooks collection for the open workbooks. Like this:
Code:
Sub test()
    Dim wbk As Workbook
    
    For Each wbk In Application.Workbooks
        MsgBox wbk.Name
    Next wbk

End Sub
What did you have in mind for presentation of the list? How about a listbox on a userform?

HTH
 
Upvote 0
Richie,

Thanks mate. I should do the "digging" before I post. I now have this code on a userform.

Bob

Code:
Private Sub UserForm_Initialize()
Dim wb As Workbook
For Each wb In Application.Workbooks
Me.ComboBox1.AddItem (wb.FullName)
Next wb
End Sub

Private Sub CommandButton1_Click()
Dim PWB As String
PWB = ComboBox1.Text
If PWB = "" Then
    MsgBox ("Please select a Workbook to upgrade ! Numpty")
    Exit Sub
End If
'Call upgrade_mods(PWB)
MsgBox (PWB)
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,746
Members
448,989
Latest member
mariah3

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