VBA UserForm Help - ComboBox to show filtered drop down list

CAmelb

New Member
Joined
Apr 7, 2018
Messages
3
Hi Members,

I am a beginner at VBA and would like to ask for some help from fellow members please.

I have a Userform with a ComboBox which accesses a RowSource Range (For example, Column A) in a worksheet.

I would like to filter the items in the ComboBox list (Column A) based on the corresponding data in (For example, Column B)

Example:

(Column A) (Column B)

(A1) Apples (B1) Fruit
(A2) Pears (B2) Fruit
(A3) Bricks (B3) Building
(A4) Bananas (B4) Fruit
(A5) Timber (B5) Building


When I click on the ComboBox I would like it to display only the items in (Column A) based on its corresponding value in (Column B)

Example:

(Drop Down List)
(A3) Bricks
(A5) Timber

I hope my explanation is not confusing.

Thanks in advance.

CA
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Hello,

How to know userform1 that you choose 'building' or 'fruit'. You have to pick them somewhere, maybe from another combobox or textbox.
 
Upvote 0
Try this
Code:
Option Explicit
Private Dic As Object

Private Sub ComboBox1_click()
   Me.ComboBox2.Value = ""
   Me.ComboBox2.List = Dic(Me.ComboBox1.Value).keys
End Sub

Private Sub UserForm_Initialize()

   Dim v1 As String, v2 As String
   Dim Cl As Range
   
   Set Dic = CreateObject("scripting.dictionary")
   Dic.CompareMode = vbTextCompare

   With Sheets("pcode")
      For Each Cl In .Range("B2", .Range("B" & Rows.Count).End(xlUp))
         v1 = Cl.Value: v2 = Cl.Offset(, -1).Value
         If Not Dic.Exists(v1) Then
            Dic.Add v1, CreateObject("scripting.dictionary")
            Dic(v1).Add v2, Nothing
         ElseIf Not Dic(v1).Exists(v2) Then
            Dic(v1).Add v2, Nothing
         End If
      Next Cl
   End With
   Me.ComboBox1.List = Dic.keys
End Sub
Combobox1 will have the values from col B & Combobox2 will have the col A values dependant on what you selected in combobox1
 
Upvote 0

Forum statistics

Threads
1,216,252
Messages
6,129,717
Members
449,529
Latest member
SCONWAY

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