combo box

  • Thread starter Thread starter scrabtree
  • Start date Start date
S

scrabtree

I have a userform with a combo box and the selections are
typed in my code. I want the selections to tie to a range
on a worksheet???
 
Try this

Userform1.ComboBox1.List = ThisWorkbook.Sheets(1).Range("A1:a10").Value
 
Back
Top