Two ComboBoxes to select folder and file names. I'm close!

jmpatrick

Active Member
Joined
Aug 17, 2016
Messages
477
Office Version
  1. 365
Platform
  1. Windows
Good afternoon. I have code to populate two ComboBoxes. The first piece works fine. It selects from a list of folders named by year:

VBA Code:
Archive_Open_Year.List = Split(CreateObject("wscript.shell").exec("cmd /c Dir ""\\GLC-SERVER\Pulte\Z_Pulte Master Archive\*."" /b").stdout.readall, vbCrLf)

The second ComboBox should be files found in whatever folder is selected in the first. I've been working on this all afternoon and I can't seem to incorporate the year value found in the first ComboBox:

VBA Code:
Archive_Open_Date.List = Filter(Split(CreateObject("wscript.shell").exec("cmd /c Dir ""\\GLC-SERVER\Pulte\Z_Pulte Master Archive\" & "2022"" /b /a-d /o-n").stdout.readall, vbCrLf), ".")

Right now, the second ComboBox lists files in the 2022 folder since I added the & "2022" to the code to show where I want the value from the first ComboBox to be used.

Thanks!


list.jpg
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
The second ComboBox should be files found in whatever folder is selected in the first.
VBA Code:
Archive_Open_Date.List = Filter(Split(CreateObject("wscript.shell").exec("cmd /c Dir ""\\GLC-SERVER\Pulte\Z_Pulte Master Archive\" & Archive_Open_Year.Value & """ /b /a-d /o-n").stdout.readall, vbCrLf), ".")
Archive_Open_Date.ListIndex = -1
 
Upvote 0
Solution
VBA Code:
Archive_Open_Date.List = Filter(Split(CreateObject("wscript.shell").exec("cmd /c Dir ""\\GLC-SERVER\Pulte\Z_Pulte Master Archive\" & Archive_Open_Year.Value & """ /b /a-d /o-n").stdout.readall, vbCrLf), ".")
Archive_Open_Date.ListIndex = -1

Perfect! I was sort of close. Thanks.
 
Upvote 0

Forum statistics

Threads
1,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

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