Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there an easier/shorter way to populate a combobox with
values in a particular range, other the method I am using? Below is the method I use to populate combobox. I used combobox23 as an example... Dim rng As Range With Worksheets(8) Set rng = .Range("C1:C100") End With For Each Cell In rng If Cell.Value < "" Then ComboBox23.AddItem Cell.Value End If Next ComboBox23.Value = "Please Select" Isnt there a shorter code to achieve the same goal? Thank you Todd Huttenstine |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Transpose technique not populating ListFillRange of ActiveX combobox | Excel Discussion (Misc queries) | |||
.AddItem list and populating combobox with created list | Excel Discussion (Misc queries) | |||
Populating sheet names in combobox | Excel Programming | |||
Combobox populating based on Option Button | Excel Programming | |||
populating a combobox on a worksheet | Excel Programming |