Skip to main content
 

How to display multiple columns in combo box?

Author: Xiaoyang Last Modified: 2024-09-03

The combo box can help us to quickly select the values without typing them, normally, you can create a combo box with one list of data, but, sometimes, you want to display multiple columns in the combo box as following screenshot shown, how could you create combo box with multiple columns in Excel?

combobox with multiple columns

Display multiple columns in combo box with combo box properties

Display multiple columns in combo box with VBA code


arrow blue right bubble Display multiple columns in combo box with combo box properties

You can go to the combo box properties to configure the attributes for the combo box, please do as this:

1. Click Developer > Insert > Combo Box (ActiveX Control), and then drag the mouse to draw a combo box as you need, see screenshots:

click Combo Box under the Developer tab  arrow right drag the mouse to draw a combo box

2. Then click Properties under the Developer tab, in the Properties dialog box, please do the following operations:

(1.) In the ColumnCount text box, enter the number of columns that you want to display, in this example, I will enter 3;

(2.) Beside the LinkedCell text box, enter a cell reference to link the combo box;

(3.) In the ListFillRange text box, type the cell range which you want to use as the source data.

click Properties under the Developer tab  arrow right set options in the Properties pane

3. After finishing the settings, close the dialog box, and click the Design Mode in the Ribbon to exit the design mode, now, when you click the combo box drop down arrow, multiple columns data will be displayed at once, see screenshot:

multiple columns data will be displayed

Tip: If there is no Developer tab in the ribbon, this article How to show/display developer tab in Excel 2007/2010/2013 Ribbon? may do a favor for you to display Developer tab.

a screenshot of kutools for excel ai

Unlock Excel Magic with Kutools AI

  • Smart Execution: Perform cell operations, analyze data, and create charts—all driven by simple commands.
  • Custom Formulas: Generate tailored formulas to streamline your workflows.
  • VBA Coding: Write and implement VBA code effortlessly.
  • Formula Interpretation: Understand complex formulas with ease.
  • Text Translation: Break language barriers within your spreadsheets.
Enhance your Excel capabilities with AI-powered tools. Download Now and experience efficiency like never before!

arrow blue right bubble Display multiple columns in combo box with VBA code

Here a VBA code also can help you to finish this task.

1. First, you need to create a range name for your source data, please select the data range, and enter a range name into the Name Box, see screenshot:

define a range name for the data

2. Then create a combo box, and right click it, then choose View Code from the context menu, see screenshot:

click View Code from the context menu

3. And the Microsoft Visual Basic for Applications window is opened, please copy and paste the following code to replace the original code, see screenshot:

VBA code: Display multiple columns in combo box:

 Private Sub UserForm_Initialize()
'Updateby Extendoffice
    With ComboBox1
        .ColumnCount = 3
        .List = Range("Namelist").value
    End With
End Sub

copy and paste the code into the module

Note: In the above code, the ComboBox1 is the name of your created combo box, the number 3 is the column number that you want to display, “Namelist” is the range name you have created in step1. You can change them to your need.

4. Then press F5 key to run this code, and then click the combo box, the multiple columns are displayed into the combo box as you need.

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...


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!