Skip to main content

How to create dynamic cascading list boxes in Excel?

You may know how to create cascading validation drop down list in Excel. However, how to create dynamic cascading list boxes in Excel? This article introduces a VBA method to get it down.

Create dynamic cascading list boxes with VBA code


Create dynamic cascading list boxes with VBA code

As below screenshot shown, you need to create a parent list box contains the unique values of the Drink column, and display all the corresponding values in the second list box based on selection in parent list box. The following VBA code helps you to achieve it. Please do as follows.

1. Firstly, you need to extract all unique values from the Drink column. Select a blank cell, enter array formula =IFERROR(INDEX($A$2:$A$11, MATCH(0,COUNTIF($J$1:J1, $A$2:$A$11), 0)),"") into the Formula Bar, and then press the Ctrl + Shift + Enter key. Then drag the Fill Handle to get all unique values. See screenshot:

Note: In the formula, $A$2:$A$11 is the range you will extract unique values from. J1 is the cell above where your formula is located.

Tip: If formula is too hard to remember and handle, the Select Duplicate & Unique Cells utility of Kutools for Excel will be a good choice for you to quickly extract all unique values from a column.

Please select the column contains unique values you will extract from. Then enable the utility by clicking Kutools > Select > Select Duplicate & Unique Cells. In the Select Duplicate & Unique Cells dialog box, select the All unique (Including 1st duplicates) option and click the OK button. Then all unique values are selected in the column. Please copy and paste them to a new place. See screenshot:

Kutools for Excel: with more than 200 handy Excel add-ins, free to try with no limitation in 60 days. Download and free trial Now!

2. Insert two list boxes separately by clicking Developer > Insert > List Box (ActiveX Control). See screenshot:

3. Right click the parent list box and select Properties from the context menu. In the Properties dialog box, change the (Name) field to Drink or other name as you need, enter the cell range contains the extracted unique values into the ListFillRange field and close the dialog.

4. Repeat the step 3 to change the second list box’s (Name) field to Item in the Properties dialog box.

5. Right click the sheet tab and select View Code from the right clicking menu. Then copy below VBA code into the Code window. See screenshot:

VBA code: Create dynamic cascading list boxes in Excel

Dim xPreStr As String
Private Sub Drink_Click()
'Update by Extendoffice 2018/06/04
    Dim I, xRows As Long
    Dim xRg As Range
    Dim xRegStr As String
    Application.ScreenUpdating = False
    xRegStr = Me.Drink.Text
    Set xRg = Range("A2:A11")
    xRows = xRg.Rows.Count
    If xRegStr <> xPreStr Then
    Me.Item.Clear
   'Me.OtherListBoxName.Clear
    Set xRg = xRg(1)
    For I = 1 To xRows
        If xRg.Offset(I - 1).Value = xRegStr Then
            Me.Item.AddItem xRg.Offset(I - 1, 1).Value
            'Me.OtherListBoxName.AddItem xRg.Offset(I - 1, 2).Value
        End If
    Next
    xPreStr = xRegStr
    End If
    Application.ScreenUpdating = True
End Sub

Notes: In the code Drink and Item are the names of two list boxes, change them to your own names.

6. Press the Alt + Q keys to close the Microsoft Visual Basic for Applications window.

7. Turn off the Design Mode by clicking Developer > Design Mode.

From now on, when selecting any kind of drink such as Coffee in the parent list box, all coffee items will be displayed in the second one. Select Tea or Wine will only display the tea or wine items in the second list box. See screenshot:


Related articles:

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (1)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Hi

What does "Me" refer to in the code and how will the code change if I have a MultiSelect list box?

Regards
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations