#1   Report Post  
Posted to microsoft.public.excel.programming
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
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pick from lists rbrickl Excel Discussion (Misc queries) 1 July 27th 06 12:16 AM
Pick from lists rbrickl Excel Worksheet Functions 1 July 26th 06 12:28 AM
Pick Lists Problem Rick Setting up and Configuration of Excel 3 January 13th 06 08:05 PM
How do I use an IF statement to pick between two lists? Spatton17569 Excel Discussion (Misc queries) 1 November 10th 05 02:31 PM
Using Pick Lists Awetronics Excel Worksheet Functions 2 November 2nd 04 09:06 AM


All times are GMT +1. The time now is 03:30 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"