Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Excellent thanks guys, once again you help me out of a tight spot.
"Joel" wrote: the code below check if item is in combobox before adding new item Sub unserform_initialize() a = 2 ActiveSheet.ComboBox1.Clear Do Until Cells(a, 24) = "" Found = False For i = 0 To (ActiveSheet.ComboBox1.ListCount - 1) If ActiveSheet.ComboBox1.List(i) = _ Format(Cells(a, 24), Text) Then Found = True Exit For End If Next i If Found = False Then ActiveSheet.ComboBox1.AddItem Cells(a, 24) End If a = a + 1 Loop End Sub "PaulW" wrote: Hi there, I'm building a Userform with a bunch of Comboboxes which I am populating from a spreadsheet. One of the Combobox is beingin populated by a field which has the majority of the entries the same. Can anyone help with some code to only populate the Combobox with uniqie entries only. Code I have been using to populate the Combobox has been: sub unserform_initialize () a = 2 do until cells(a,1)="" combobox1.additem cells(a,24) a = a+1 loop end sub Thanks Dan |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
unique text additem combobox | Excel Programming | |||
additem to combobox with an array | Excel Discussion (Misc queries) | |||
combobox additem | Excel Programming | |||
AddItem Method - Combobox value | Excel Programming | |||
Multiple Column ComboBox using Additem | Excel Programming |