+ Reply to Thread
Results 1 to 8 of 8

Sort an Array of items by Alpha

Hybrid View

  1. #1
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Sort an Array of items by Alpha

    or:

    Sub snbubble()
      With ComboBox1
        .List = Sheets(1).Cells(1).Resize(17).Value
        
        For j = 0 To UBound(.List) - 1
          For jj = j + 1 To UBound(.List)
            If .List(j) > .List(jj) Then
              c01 = .List(j)
              .List(j) = .List(jj)
              .List(jj) = c01
            End If
          Next
        Next
      End With
    End Sub



  2. #2
    Valued Forum Contributor realniceguy5000's Avatar
    Join Date
    03-20-2008
    Location
    Fl
    MS-Off Ver
    Excel 2003 & 2010
    Posts
    951

    Re: Sort an Array of items by Alpha

    Ok, I gave both ways a try,

    @ snb, I was not able to get your codes to work in my situation again I ran into the same problems I did with my sort script. I'm sure it's my fault as I just dont understand what it going on. As you say avoid code you dont understand... just my luck I guess. But thank you for your time...

    @ Dom, I was able to get your option to work, Seems to work better anyway rather than to use an array of items. as I can sort then place the list right away.
    Thank You for your time...

    Mike,
    Thank You, Mike

    Some Helpful Hints:

    1. New members please read & follow the Forum Rules
    2. Use Code Tags...Place[code]Before the first line and[/code] After the last line.
    3. If you are pleased with a solution mark your post SOLVED.
    4. Thank those who have help you by clicking the scales at the top right of the post.

    Here...

  3. #3
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Sort an Array of items by Alpha

    @RNG

    I can't believe you did anything wrong
    Please do what you would ask any OP: post your example workbook.

    cfr. the attachment
    Attached Files Attached Files
    Last edited by snb; 07-05-2011 at 04:21 PM.

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Sort an Array of items by Alpha

    Mike,

    Here's a 'black box' approach with an example. It does a simple insertion sort.

    Sub x()
        With UserForm1
            .Show vbModeless
            .ListBox1.List = Range("A1:A10").Value
            SortTheBox .ListBox1
        End With
    End Sub
    
    Function SortTheBox(vCtl As Variant) As Boolean
        Dim i         As Long
        Dim j         As Long
    
        If Not IsObject(vCtl) Then Exit Function
    
        Select Case TypeName(vCtl)
            Case "ComboBox", "ListBox"
                With vCtl
                    For i = 1 To .ListCount - 1
                        For j = 0 To i - 1
                            If .List(i) < .List(j) Then
                                .AddItem .List(i), j
                                .RemoveItem i + 1
                                Exit For
                            End If
                        Next j
                    Next i
                End With
    
                SortTheBox = True
        End Select
    End Function
    Entia non sunt multiplicanda sine necessitate

  5. #5
    Valued Forum Contributor realniceguy5000's Avatar
    Join Date
    03-20-2008
    Location
    Fl
    MS-Off Ver
    Excel 2003 & 2010
    Posts
    951

    Re: Sort an Array of items by Alpha

    Thanks Shg...Nice Approach...

    @ SNB....Thanks for the lesson.
    I never said your code didn't work in fact you must be a master at taking 100 line scripts and making them 10 or less... lol I just dont understand your logic at times, which makes them harder for me to re-code if needed.
    Maybe one day...

    Thank You, Mike

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1