Can I, and how can I sort a listbox by starting at, say column 10 ?
Printable View
Can I, and how can I sort a listbox by starting at, say column 10 ?
Assuming you already know how to sort arrays, then just use the Mid$ function for what ever length of text you want to sort on.
For example:
If Mid$(ListBox1.List(subscript), 10, complen) > _
Mid$(ListBox1.List(subscript+1), 10, complen)