Populate dropdown with worksheets in workbook selected in other dropdown

Eyes0ftheworld

New Member
Joined
Apr 23, 2014
Messages
28
Hey!

I'm having some issues with a macro to list all sheets with a workbook. The workbook is specified in another dropdown. I'm not sure how to reference another dropdown. I want the dropdown WorksheetsDD to populate once the workbook is specified in the dropdown WorkbooksDD. This is what I have so far and it's working up until the dropdown for the worksheets.

Sub StartButton_Click()
'lists each book that's OPEN


Set wks = Worksheets("Directions")
wks.Shapes("WorkbooksDD").ControlFormat.RemoveAllItems


Dim Wb As Workbook
For Each Wb In Application.Workbooks
Worksheets("Directions").Shapes("WorkbooksDD").OLEFormat.Object.AddItem Wb.Name
Next Wb
End Sub


Sub WorkbooksDD_Change()


End With


Thanks for any help you can provide!
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.

Forum statistics

Threads
1,214,952
Messages
6,122,458
Members
449,085
Latest member
ExcelError

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