ListBox Show Multiple columns

gheyman

Well-known Member
Joined
Nov 14, 2005
Messages
2,341
Office Version
  1. 365
Platform
  1. Windows
On my userform I have a List box and in the properties I see it asks for Bound Column, Column Count... So I assume you can show more than one column in the list.

RowSource: Drop_Down_Lists!$J$3:$K$100

I set the column count to 2 the bound column I set to 2 and I made the widths so that it should show two (1 pt;0.5 pt)

But when I open the form, I only see the data from the 2nd column in the list.

And when I make selections, its putting the data from column 1 in my selected area.

What am I doing wrong?
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Re: ListBox Show Mutilpe columns

I never use RowSource
I use something like this:
Row Source is not dynamic

Remove the RowSouce from the Userform Project window
And the other things like column count and width.

This script will load in all these details when you open the Userform
And then if you add more data to your range of values in column K and J this will be automatically updated when you open your userform.

Put this script in your Userform

Code:
Private Sub UserForm_Initialize()
'Modified  10/30/2018  9:07:29 PM  EDT
Dim Data As Variant
Dim lastrow As Long
lastrow = Sheet1.Cells(Rows.Count, "K").End(xlUp).Row
ListBox1.ColumnCount = 2
ListBox1.ColumnWidths = "20;20"
Data = Range("J2:K" & lastrow)
ListBox1.List = Data
End Sub
 
Upvote 0
Re: ListBox Show Mutilpe columns

Thanks, but now I get an error when I try to activate the form. I am trying to open the form by either right click or double click. When I insert this code, I get an error when I double click.

Its a Run-time error '70':
Permission denied

Here is the code that errors
Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
UserForm1.Show
End Sub

I appreciate the help! Thank you
 
Upvote 0
Re: ListBox Show Mutilpe columns

I fixed the problem with the error by changing lastrow = Sheet1 to Sheet6

But I still only see one row in my list and its storing the selections from column 1 when I need it to store the info from column 2
Code:
Private Sub CommandButton1_Click()
Dim x As Long
Dim varSelected() As String
Dim i As Integer

With ListBox1
   ReDim varSelected(1 To .ListCount)
    For x = 0 To .ListCount - 2
        If .Selected(x) Then
            i = i + 1
            varSelected(i) = .List(x)
        End If
    Next x
End With

If i = 0 Then Exit Sub

With Sheets("DROP_DOWN_LISTS")
   .Range("U3:U500").ClearContents
   .Range("U3").Resize(i).Value = Application.Transpose(varSelected)
End With
UserForm1.Hide

End Sub
 
Upvote 0
Re: ListBox Show Mutilpe columns

Not sure. But the code I provided works for me. I mentioned not using RowSource but you made no comment about that.
If you use my script after you have removed RowSource both listbox columns should show data.

Assuming you have data in columns J and K of the active sheet
And you must remove the column width and column count you entered.

Not sure what all this code your showing here is suppose to do.

I assume you did not use my suggestions. At least if you did you did not comment about if you removed all your previous entries in the userform. You cannot use both my suggestion and yours.

And since you never mentioned sheet names I just had to guess.

To help we always need specific details.

And I'm not sure what you ultimate goal is here.

And you never mentioned wanting to do this with a sheet activation event using doubleclick
 
Upvote 0
Re: ListBox Show Mutilpe columns

I made the widths so that it should show two (1 pt;0.5 pt)
A typical character is at least 6 points wide.

With that setting, the first column would be 1 pt wide and the second would be the remainder of the listbox width.
That is why you can't see the first column.
Set the column widths wider.
 
Last edited:
Upvote 0
Re: ListBox Show Mutilpe columns

I wondered about that myself. That's why I provided 20. I never set these perrimiters in the Properties window. I always set them on userform initialization.
A typical character is at least 6 points wide.

With that setting, the first column would be 1 pt wide and the second would be the remainder of the listbox width.
That is why you can't see the first column.
Set the column widths wider.
 
Upvote 0
Re: ListBox Show Mutilpe columns

In this code List(x) will always refer to the first column.
Code:
varSelected(i) = .List(x)
To refer to another column you need to use the column argument of List.
Code:
varSelected(i) = .List(x,1) ' return column value from column 2

By the way, I don't think I've ever used the BoundColumn property with a listbox in Excel.
 
Upvote 0
Re: ListBox Show Mutilpe columns

Me neither. What does that even do?
In this code List(x) will always refer to the first column.
Code:
varSelected(i) = .List(x)
To refer to another column you need to use the column argument of List.
Code:
varSelected(i) = .List(x,1) ' return column value from column 2

By the way, I don't think I've ever used the BoundColumn property with a listbox in Excel.
 
Upvote 0
Re: ListBox Show Mutilpe columns

It determines which column in a multicolumn listbox that the value is returned from when you use the .Value property.
 
Upvote 0

Forum statistics

Threads
1,215,035
Messages
6,122,785
Members
449,095
Latest member
m_smith_solihull

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