+ Reply to Thread
Results 1 to 7 of 7

sorting an array

  1. #1
    Registered User
    Join Date
    06-14-2008
    Posts
    12

    sorting an array

    Dear all,

    Does anyone know a fast way to sort the rows of a 2-dim array (in descending order) by a particular column. For example, suppose I've got the following array

    V W X Y Z (the column names)
    ----------------------------------
    a1 a2 a3 a4 a5
    b1 b2 b3 b4 b5
    c1 c2 c3 c4 c5
    d1 d2 d3 d4 d5

    I want to sort this array by variable Y. Let's suppose c4>a4>d4>b4
    Thus, I want back

    c1 c2 c3 c4 c5
    a1 a2 a3 a4 a5
    d1 d2 d3 d4 d5
    b1 b2 b3 b4 b5

    I have a big 2-d array, so something fast would be really helpful. Can anyone help with this problem?

    Thanks in advance.

    Regards,
    John

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    Like this:
    Please Login or Register  to view this content.
    See VBA Help for the Sort method

  3. #3
    Registered User
    Join Date
    06-14-2008
    Posts
    12
    Thanks. But the data isn't contained in the worksheet. It is manipulated and created in VBA itself. Was looking for a sub-routine to do this.

  4. #4
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229
    The UDF in this thread
    http://www.excelforum.com/showthread.php?t=649634
    will accept either a range or an array as its first argument.

    (Since posting that, I've developed a more generalized version, let me know if you want me to post that.)
    _
    ...How to Cross-post politely...
    ..Wrap code by selecting the code and clicking the # or read this. Thank you.

  5. #5
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    mikerickson, that's a self-referential link ...

  6. #6
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229
    Thanks Shg,

    Oops,
    Now that I'm at my home computer, I'll post the current best version.
    Please Login or Register  to view this content.
    QSortedArray can either be entered as an array formula on a spreadsheet, or used in a VB routine to return a sorted array.

  7. #7
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834
    try
    Please Login or Register  to view this content.
    Last edited by jindon; 07-12-2008 at 11:39 PM.

+ 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