Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi everybody
I have a dropdown that I want to list various depts - sales, finance etc... This should be easy but I dont know how to do it. Thanks for your help. Suzanne |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
You can add items by: ComboBox1.AddItem "Item 1" ComboBox1.AddItem "Item 2" ' and so on... or, you can set the rowsource property to a range: ComboBox1.RowSource = "Sheet1!A1:A10" -- Hope that helps. Vergel Adriano "Grd" wrote: Hi everybody I have a dropdown that I want to list various depts - sales, finance etc... This should be easy but I dont know how to do it. Thanks for your help. Suzanne |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Both work beautifully
thanks again "Vergel Adriano" wrote: Hi, You can add items by: ComboBox1.AddItem "Item 1" ComboBox1.AddItem "Item 2" ' and so on... or, you can set the rowsource property to a range: ComboBox1.RowSource = "Sheet1!A1:A10" -- Hope that helps. Vergel Adriano "Grd" wrote: Hi everybody I have a dropdown that I want to list various depts - sales, finance etc... This should be easy but I dont know how to do it. Thanks for your help. Suzanne |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Form behind cell entries | Excel Discussion (Misc queries) | |||
Excel Form Deleting Entries | Excel Discussion (Misc queries) | |||
How to get entries on a list box on a form | Excel Programming | |||
how to get a list of entries onto a form listbox | Excel Programming | |||
create entries on a listbox on a form | Excel Programming |