Ahhh now I get it
<hr>
<font face=Courier New><SPAN style="color:#00007F">Option</SPAN> <SPAN style="color:#00007F">Explicit</SPAN>
<SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> UserForm_Initialize()
<SPAN style="color:#007F00">'Declare the combobox object</SPAN>
<SPAN style="color:#00007F">Dim</SPAN> cmbx1 <SPAN style="color:#00007F">As</SPAN> MSForms.ComboBox
<SPAN style="color:#007F00">'Set the combobox object to the combo box of your choice</SPAN>
<SPAN style="color:#00007F">Set</SPAN> cmbx1 = Me.ComboBox1
<SPAN style="color:#007F00">'Clear old entries:</SPAN>
<SPAN style="color:#00007F">Do</SPAN> <SPAN style="color:#00007F">Until</SPAN> cmbx1.ListCount = 0
cmbx1.RemoveItem (1)
<SPAN style="color:#00007F">Loop</SPAN>
<SPAN style="color:#007F00">'Add new items</SPAN>
cmbx1.AddItem "Item 1"
cmbx1.AddItem "Item 2"
cmbx1.AddItem "Item 3"
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>
<SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> ComboBox1_Change()
<SPAN style="color:#00007F">Dim</SPAN> cmbx1 <SPAN style="color:#00007F">As</SPAN> MSForms.ComboBox
<SPAN style="color:#00007F">Dim</SPAN> ws <SPAN style="color:#00007F">As</SPAN> Excel.Worksheet
<SPAN style="color:#00007F">Dim</SPAN> rngLookIn <SPAN style="color:#00007F">As</SPAN> Excel.Range
<SPAN style="color:#00007F">Dim</SPAN> rngCell <SPAN style="color:#00007F">As</SPAN> Excel.Range
<SPAN style="color:#007F00">'Set the combobox object to the combo box of your choice</SPAN>
<SPAN style="color:#00007F">Set</SPAN> cmbx1 = Me.ComboBox1
<SPAN style="color:#007F00">'Set the worksheet to name of your choice</SPAN>
<SPAN style="color:#00007F">Set</SPAN> ws = ThisWorkbook.Sheets("Sheet1")
<SPAN style="color:#007F00">'Set the range to the column you want looked at.</SPAN>
<SPAN style="color:#00007F">Set</SPAN> rngLookIn = ws.Columns(5).Cells
<SPAN style="color:#007F00">'Loop through range until you encouter an empty cell.</SPAN>
<SPAN style="color:#00007F">For</SPAN> <SPAN style="color:#00007F">Each</SPAN> rngCell <SPAN style="color:#00007F">In</SPAN> rngLookIn
<SPAN style="color:#00007F">If</SPAN> VBA.LenB(rngCell.Value) = 0 <SPAN style="color:#00007F">Then</SPAN> <SPAN style="color:#00007F">Exit</SPAN> <SPAN style="color:#00007F">For</SPAN>
<SPAN style="color:#00007F">Next</SPAN> rngCell
<SPAN style="color:#007F00">'Plug your value into the empty cell you found.</SPAN>
rngCell.Value = cmbx1.Value
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>
</FONT>