Well, I mean.. see pic below
and code...
HTH.Code:Private Sub TestComboBox() Const strList As String = "one,two,three,four,five,six,other" With UserForm1 .Caption = "Choose Item from List" .ComboBox1.List = Split(strList, ",") .ComboBox1.ListIndex = 0 .Show vbModeless End With End Sub Private Sub ComboBox1_Change() ActiveCell.Value = Me.ComboBox1.Value End Sub Private Sub UserForm_Initialize() TestComboBox End Sub




Reply With Quote