Sort a Combobox Alphabetically

stirlingmw

Board Regular
Joined
Feb 18, 2013
Messages
75
When my Userform loads a Combobox is populated using the following code:

Code:
Private Sub comboboxFill()
CmbFindProject.Clear
totRows = Worksheets("Project Master").Range("A1").CurrentRegion.Rows.count
For i = 2 To totRows
CmbFindProject.AddItem Worksheets("Project Master").Cells(i, 1).value
Next i
End Sub

What code do I need to sort the results alphabetically. The data returned is a list of Projects, and therefore I only need to sort by first letter.
Thanks
Steve
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
How about
Code:
Private Sub UserForm_Initialize()
   Dim Lst As Object
   Dim i As Long
   
   Set Lst = CreateObject("system.collections.arraylist")
   With Sheets("Project Master")
      For i = 2 To .Range("A" & Rows.Count).End(xlUp).Row
         Lst.Add .Range("A" & i).Value
      Next i
   End With
   Lst.Sort
   Me.CmbFindProject.list = Lst.toarray
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,733
Members
448,987
Latest member
marion_davis

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