Help with userform combobox list

Damo10

Active Member
Joined
Dec 13, 2010
Messages
460
Hi,

I have the following code to add names to a combobox, is it posible to stop duplicate names being entered and to sort the list alphabetically?

Regards

Code:
Private Sub Select1_Click()
Dim lr As Long
Dim x As Long
Dim list As String
Dim shname As String
If Me.cboSheet = "" Then Exit Sub
Me.Select1.BackColor = &HFF00&
Me.cboSheetTo.Visible = False
Me.cboList.Visible = True
Me.Select2.Visible = True
Me.Confirm.Visible = False
Me.Employee.Visible = True
Me.DepartmentTo.Visible = False
Me.EmployeeL.Visible = False
Me.Select3.Visible = False
Me.cboLast.Visible = False
cboList.Clear
cboLast.Clear
If Me.cboList = "" Then Me.Select2.BackColor = &H8000000F
Me.cboList.SetFocus
shname = Me.cboSheet
With ActiveWorkbook.Sheets(shname)
lr = .Range("B" & Rows.Count).End(xlUp).Row
End With
For x = 10 To lr
With ActiveWorkbook.Sheets(shname)
list = .Range("B" & x)
Me.cboList.AddItem list
End With
Next x
End Sub
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).

Forum statistics

Threads
1,224,502
Messages
6,179,126
Members
452,890
Latest member
Nikhil Ramesh

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top