+ Reply to Thread
Results 1 to 7 of 7

how to alphabetize a list

Hybrid View

  1. #1
    Registered User
    Join Date
    03-14-2014
    Location
    Mordor
    MS-Off Ver
    Excel 365
    Posts
    78

    how to alphabetize a list

    Is there a way to modify the following macro (graciously provided by user Alkey) so that it simultaneously alphabetizes the list as well? Actually, I would prefer a second macro, because I don't always want to alphabetize my lists. So, I guess I would need a function called something like Concat_Range_Alphabetize. As you can tell, I'm a total vba NOOB, so please forgive my ignorance.

    Function Concat_Range(rngJoin As Range, strSep As String) As String
    Concat_Range = Join(Filter(Application.Transpose(Evaluate("=IF(" & rngJoin.Address & "<>""""" _
    & "," & rngJoin.Address & "," & """~""" & ")")), "~", False), strSep)
    End Function
    Thanks, I really appreciate your time!!!

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: how to alphabetize a list

    Hi,

    I'm finding it difficult to visualise what your original data looks like (rngJoin) and what the strSep is.

    Would you upload your workbook with a before and after situation which shows the result of your UDF.
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Registered User
    Join Date
    03-14-2014
    Location
    Mordor
    MS-Off Ver
    Excel 365
    Posts
    78

    Re: how to alphabetize a list

    Sure, here's a simple example. The answer is in cell A9. My expected outcome would be:
    Abraham Lincoln, George Bush, George Washington, Hillary Clinton, Paula Abdul, Stephen Colbert

    The list is just random names for the purposes of this question. Thanks!
    Attached Files Attached Files

  4. #4
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: how to alphabetize a list

    Hi,

    How about sorting the range first with a macro then applying your UDF

    e.g.

    Sub Sort()
        Range("A1:A6").Sort key1:=Range("A1")
        Range("A9") = "=concat_range(A1:A6,"","")"
    End Sub
    Function Concat_Range(rngJoin As Range, strSep As String) As String
    Concat_Range = Join(Filter(Application.Transpose(Evaluate("=IF(" & rngJoin.Address & "<>""""" _
    & "," & rngJoin.Address & "," & """~""" & ")")), "~", False), strSep)
    End Function
    You will probably want to use use some code in the Sort macro to identify the range but I guess you see the idea.

  5. #5
    Registered User
    Join Date
    03-14-2014
    Location
    Mordor
    MS-Off Ver
    Excel 365
    Posts
    78

    Re: how to alphabetize a list

    Thanks Richard, but I couldn't get your sort macro to work. I did say I was a total NOOB on vba right? I'm sure I'm doing something wrong on my end. However, I did receive another solution (in the formulas forum) using a formula to first alphabetize the list (creating a new column of data, which I was hoping to avoid), and then applying this Concat_Range macro to that. I was just hoping there was some way to modify the code above to handle everything in one fell swoop. But, thank you for your time.

  6. #6
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: how to alphabetize a list

    Put the Procedure I gave you and the function you provided in the same Module. Just copy all the code I gave you and paste it.

    Then from the ribbon use the Developer tab, choose macros and then the macro called 'Sort' and OK
    The sort macro will first sort the range A1:A6 and then it will enter your concat formula
    Formula: copy to clipboard
    "=concat_range(A1:A6,"","")
    in A9.

  7. #7
    Registered User
    Join Date
    03-14-2014
    Location
    Mordor
    MS-Off Ver
    Excel 365
    Posts
    78

    Re: how to alphabetize a list

    Ah, thanks for the details! For some reason it doesn't add the space after the comma, but other than that, it works perfectly. Thanks, thread solved!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Alphabetize items in list box?
    By Nitefox in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-16-2014, 05:28 PM
  2. Alphabetize list by column B
    By BShane in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 03-27-2011, 11:44 PM
  3. Alphabetize list and link to other list sorted differently
    By jcclow in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 11-12-2010, 10:35 AM
  4. How do you alphabetize a list in xcel?
    By ArCar in forum Excel General
    Replies: 1
    Last Post: 08-03-2006, 06:40 PM
  5. How to alphabetize my created list?
    By etakathy in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 04-08-2005, 11:06 AM

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