RP1America
Technical User
I have a multiselect listbox that I would like to insert each selection into one cell, say "A1".
Therefore if all are selected, when the command button is clicked, I would like the cell to read "A, B, C, D, E" or if only every other one is selected, "A, C, E".
Thoughts?
Code:
With lstTEST
.AddItem "A"
.AddItem "B"
.AddItem "C"
.AddItem "D"
.AddItem "E"
End With
Therefore if all are selected, when the command button is clicked, I would like the cell to read "A, B, C, D, E" or if only every other one is selected, "A, C, E".
Thoughts?