Sorting ListBox Items alphabetically

This is the simple code to sort ListBox items alphabetically. Alternatively, you can download the file and test run it for yourself. Just pass the listbox object as function parameter.
Option Explicit Sub SortListBox(lst As MSForms.ListBox) Dim arrItems As Variant Dim arrTemp As Variant Dim intOuter As Long Dim intInner As Long arrItems = lst.List For intOuter = LBound(arrItems, 1) To UBound(arrItems, 1) For intInner = intOuter + 1 To UBound(arrItems, 1) If arrItems(intOuter, 0) > arrItems(intInner, 0) Then arrTemp = arrItems(intOuter, 0) arrItems(intOuter, 0) = arrItems(intInner, 0) arrItems(intInner, 0) = arrTemp End If Next intInner Next intOuter 'Clear the listbox lst.Clear 'Add the sorted array back to the listbox For intOuter = LBound(arrItems, 1) To UBound(arrItems, 1) lst.AddItem arrItems(intOuter, 0) Next intOuter End Sub Sub ExecuteFunction() Call SortListBox(Sheet1.ListBox1) End Sub

| Attachment | Size |
|---|---|
| SortListBox.xls | 35.5 KB |
»
- Vishesh's blog
- Add new comment
- 3118 reads

Recent comments
6 hours 20 min ago
9 hours 43 min ago
10 hours 6 min ago
16 hours 8 min ago
17 hours 44 sec ago
1 day 7 hours ago
1 day 7 hours ago
1 day 11 hours ago
1 day 19 hours ago
2 days 14 hours ago