Hi all,
I’m trying to extract the values of a multiselect listbox and place the selected items into cells while offsetting each item in the list, as it is with what I have, I can only extract the last value.
Thanks Darryl.
Private Sub CommandButton1_Click()
Dim i As Long
Dim Msg As String
With Me.ListBox1
For i = 0 To .ListCount – 1
If .Selected(i) Then
ActiveCell.Offset(1, 0).Value = .List(i)
End If
Next i
End With
End Sub