Thread: Pick Lists
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
cmart02[_2_] cmart02[_2_] is offline
external usenet poster
 
Posts: 18
Default Pick Lists

Dude,

You can load the months:

Private Sub UserForm_Initialize()
myList = Array("January", "February", "March", "April", "May", "June",
"July", _
"August", "September", "October", "November", "December")

ComboBox1.List = myList

End Sub

And then paste it somewhere in the worksheet:

Private Sub ComboBox1_Change()
Range("A1") = ComboBox1.Text
End Sub

Regards,
Robert