Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ComboBox1.List = Worksheets("Sheet1").Range("A1:A10").Value
or ComboBox1.RowSource = "Sheet1!A1:A10" or Dim cell As Range For Each cell In Worksheets("Sheet1").Range("A1:A10") ComboBox1.AddItem cell.Value Next cell For more info on comboboxes/listboxes see www.rubbershoe.com/listbox.htm Hth Tim Zych "igor" wrote in message ... Hi, guys i'm haveing a problem feeding a combobox off of a spredsheet. i have a user form that contains a combo box. i want it to be fed by items listed on sheet1 in cells a1 thru a10. Please help. Thanks in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
RSS feed with excel? | Excel Discussion (Misc queries) | |||
Life Feed character | Excel Worksheet Functions | |||
Replace Line Feed | Excel Discussion (Misc queries) | |||
How can I feed data to other sheets? | Excel Discussion (Misc queries) | |||
Combo box feed | Excel Programming |