Good thinking. There are many ways to do that. Here is three common
solutions; an array, the rowsource property and a loop:

Private Sub UserForm_Initialize()
ComboBox1.List = Sheets(1).Range("A1:A200").Value
End Sub

Private Sub UserForm_Initialize()
ComboBox1.RowSource = "=Sheet1!A1:A200"
End Sub

Private Sub UserForm_Initialize()
Dim R As Long
For R = 1 To 200
ComboBox1.AddItem Sheets(1).Cells(R, 1).Text
Next
End Sub

HTH. Best wishes Harald

"Glenn" <nospam@yahoo.com> skrev i melding
news:uMzzopgdFHA.3048@TK2MSFTNGP12.phx.gbl...
> Thanks to both of you. This worked. I am curious about something

though -
> in the event of a long list or one that is always changing, I can see

where
> it would be easier to have the data for the drop down box stored on a
> worksheet somewhere.
>
> Is that possible?
>
> "Jack Gillis" <XXXXXXXX@widomaker.com> wrote in message
> news:11be0voc6kive2@corp.supernews.com...
> > Thank you for asking that question for it gives me the chance to give a
> > little back to the NG after receiving a whole lot of help from it. I
> > just went through what you are trying to do this morning.
> >
> > Here is what I did but there may be a better way.
> >
> >
> > Private Sub UserForm_Initialize()
> >
> > YourComboBoxName.AddItem "Your First Item"
> > YourComboBoxName.AddItem "Your Second Item"
> >
> > ' and so forth
> >
> > End Sub
> >
> > Hope this helps.
> >
> >
> >
> > "Glenn" <nospam@yahoo.com> wrote in message
> > news:e2v9PnbdFHA.3328@TK2MSFTNGP09.phx.gbl...
> >>I am creating a user-form for data entry into a particular worksheet.
> >>
> >> For one of the fields I'd like to have a drop down box (which I can
> >> figure
> >> out how to get there) with two choices to pick from (which I can't

figure
> >> out how to get the choices to show up).
> >>
> >> Can someone please tell me how to get the choices to show up in the

drop
> >> down box of a user form?
> >>
> >> Thank you,
> >> Glenn
> >>
> >>

> >
> >

>
>