Printing choices from Listbox control

rhouston1908

New Member
Joined
Oct 24, 2011
Messages
26
I have a multi-select list box (on a userform) with the following items: dog, cat, bird, horse, and pig

How do I get all of my choices from the multi-select list box to display in cell within an excel worksheet? I would like my selections to be separated by a comma.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Something like this:
Code:
Private Sub CommandButton1_Click()
Dim arrVals()
Dim I As Long
Dim J As Long
 
    For I = 0 To ListBox1.ListCount - 1
 
        If ListBox1.Selected(I) = True Then
            ReDim Preserve arrVals(J)
            arrVals(J) = ListBox1.List(I)
            J = J + 1
        End If
    Next I
 
    Range("A1") = Join(arrVals, ",")
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,551
Messages
6,114,272
Members
448,558
Latest member
aivin

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