Using Combobox Selection to Filter Data

justdave3283

New Member
Joined
Aug 18, 2014
Messages
11
Hi all.

Once again, any help on this will be greatly appreciated.

In my spreadsheet, I've created a combobox with two dependent listboxes and a command button ("Show")

What I need is for the data in the sheet to be filtered to show only the data which matches the selection in the second listbox.

Listbox one contains all available options in Column D. listbox two contains all available options in Column E, depending on first selection.

I'm doing this to try and make it easier for colleagues with a fear of computers to be able to get the info they need without having to manually filter the data.

Please help.
:confused::confused::confused:

Regards

Dave
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Hi
see if this is useful:

Code:
' paste this at the sheet module
' filters column E by value of list box 2


Private Sub CommandButton1_Click()
    
    Me.Range("e:e").AutoFilter 1, Me.ListBox2.Value


End Sub
 
Upvote 0

Forum statistics

Threads
1,215,328
Messages
6,124,295
Members
449,149
Latest member
mwdbActuary

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