

The ListBox only displays column headers if you use RowSource. In this case, you need to use AddItem to add the value to the ListBox: If myRange.Count = 1 Then Sheet1.Range( "A1").Value ' Single value variable Instead, it converts the range to a string/double/date etc. Important Note: If there is only one item in a range then VBA doesn’t covert it to an array. You can also use the List property to write from the ListBox to an array or range: Range( "A1:B3").Value = ListBox1.List ListBox1.List = Array( "Apple", "Orange", "Banana") Here are some examples of using the List property: ' Add the contents of an array As Range.Value is an array you can copy the contents of any range to the Listbox. The List property allows you to add to contents of an array to a ListBox. The table below provides a quick comparison of these properties: Task The List and RowSource properties are the most commonly used.

Items in the ListBox are always visible.The Listbox allows multiple selections.

The ListBox is very similar to the ComboBox which also allows the user to select an item from a list of items. The ListBox can have multiple columns and so it is useful for tasks like displaying records. The ListBox is used to display a list of items to the user so that the user can then select one or more.

