Excel ListBox control

The VBA Guide For Using Userform ListBox Controls

January 22, 2019 Chris Newman

What Are ListBox Controls?

ListBoxes are a great way to manage tables within your userform. I have used them in the past to allow users to manage rows of information without necessary displaying all that information within the userform itself. There are a lot of neat things you can do with a userform so Ive collected some of the more popular tasks you may want to know how to write within your VBA code.

For all the example VBA code snippets, the name of the listbox with be called ListBox1. I also have a downloadable example file that you can get for free if you want to see a lot of this code in action.

Enjoy!


Already Subscribed? Click HERE to log-in to the "Example Files" section


Add An Item to The ListBox

To The End

See this content in the original post

To A Specific Position

Remember ListBoxes are zero based, so the first item is really at position 0. So if you want to add an item to the 5th position, you need to reference number 4 in the AddItem function.

See this content in the original post

Add Multiple Items To The ListBox

Individually Written

See this content in the original post

From An Array List

See this content in the original post

From A Cell Range

See this content in the original post

From A Table Object (ListObject)

See this content in the original post

Delete ListBox Items

Remove An Item From The ListBox

See this content in the original post

Remove Selected Item(s) From The ListBox

See this content in the original post

Remove All Items From The ListBox

See this content in the original post

Listbox Selected Items

Select A Specific Item In The ListBox

See this content in the original post

Deselect All Items

Unfortunately, the ListIndex = -1 method does not work when a ListBox allows for multiple selections. Hence, the below code tests for the ListBoxs selection mode.

See this content in the original post

Count How Many Items Are Selected (Function)

See this content in the original post

Count How Many Items Are In The ListBox

See this content in the original post

Move Selected Item Up/Down

Move Selection Up One Position

See this content in the original post

Move Selection Down One Position

See this content in the original post

Additional Resources

  • Excel VBA UserForm Listbox (AnalysisTabs.com)

  • The Complete Guide to Excel VBA Form Control ListBoxes (wellsr.com)

Anything To Add?

I know there are a TON of things you can do with ListBoxes and if there are actions your are stuck trying to figure out, leave a comment below and I will try to add them to the guide. Please only ask for generic tasks and not super specific ones. Also, if there is a more simplistic way to carry out some of these tasks, let me know!

Discover more from TheSpreadsheetGuru