combo box

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???
 
R

Ron de Bruin

Try this

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