+ Reply to Thread
Results 1 to 6 of 6

Arrange cells in ascending order

Hybrid View

  1. #1
    Registered User
    Join Date
    05-27-2016
    Location
    india
    MS-Off Ver
    2007
    Posts
    2

    Arrange cells in ascending order

    can someone help me . i am completely new to macros and all , came here jumping looking for help on my topic

    i have added few combinations of medicines in multiple columns , i want them to be auto arranged alphabetically as i keep on adding more formulas around 1000 in near future .
    i would like column c and column d or may be all to be formatted automatic counting columns c as the main column (which we take as a starting point )
    help
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,692

    Re: Arrange cells in ascending order

    Don't know which one you're after.
    Sub Sort_Four_Columns()
        Dim lr As Long
        lr = Range("C" & Rows.Count).End(xlUp).Row
        With Range("C4:F" & lr)
            ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Clear
            ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range("C4:C" & lr), _
                SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
            ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range("D4:D" & lr), _
                SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
            ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range("E4:E" & lr), _
                SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
            ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range("F4:F" & lr), _
                SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
            With ActiveWorkbook.Worksheets("Sheet1").Sort
                .SetRange Range("C4:F" & lr)
                .Header = xlGuess
                .MatchCase = False
                .Orientation = xlTopToBottom
                .SortMethod = xlPinYin
                .Apply
            End With
        End With
    End Sub
    Sub Sort_Four_Individual_Columns()
        Dim lr As Long, i As Long
        lr = Range("C" & Rows.Count).End(xlUp).Row
        For i = 3 To 6
            With Range(Cells(4, i), Cells(lr, i))
                ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Clear
                ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range(Cells(4, i), Cells(lr, i)), _
                    SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
                With ActiveWorkbook.Worksheets("Sheet1").Sort
                    .SetRange Range(Cells(4, i), Cells(lr, i))
                    .Header = xlGuess
                    .MatchCase = False
                    .Orientation = xlTopToBottom
                    .SortMethod = xlPinYin
                    .Apply
                End With
            End With
        Next i
    End Sub

  3. #3
    Registered User
    Join Date
    05-27-2016
    Location
    india
    MS-Off Ver
    2007
    Posts
    2

    Re: Arrange cells in ascending order

    can you help it out. i dont know where to add it


    Quote Originally Posted by jolivanes View Post
    Don't know which one you're after.
    Sub Sort_Four_Columns()
        Dim lr As Long
        lr = Range("C" & Rows.Count).End(xlUp).Row
        With Range("C4:F" & lr)
            ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Clear
            ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range("C4:C" & lr), _
                SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
            ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range("D4:D" & lr), _
                SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
            ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range("E4:E" & lr), _
                SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
            ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range("F4:F" & lr), _
                SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
            With ActiveWorkbook.Worksheets("Sheet1").Sort
                .SetRange Range("C4:F" & lr)
                .Header = xlGuess
                .MatchCase = False
                .Orientation = xlTopToBottom
                .SortMethod = xlPinYin
                .Apply
            End With
        End With
    End Sub
    Sub Sort_Four_Individual_Columns()
        Dim lr As Long, i As Long
        lr = Range("C" & Rows.Count).End(xlUp).Row
        For i = 3 To 6
            With Range(Cells(4, i), Cells(lr, i))
                ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Clear
                ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range(Cells(4, i), Cells(lr, i)), _
                    SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
                With ActiveWorkbook.Worksheets("Sheet1").Sort
                    .SetRange Range(Cells(4, i), Cells(lr, i))
                    .Header = xlGuess
                    .MatchCase = False
                    .Orientation = xlTopToBottom
                    .SortMethod = xlPinYin
                    .Apply
                End With
            End With
        Next i
    End Sub

  4. #4
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,692

    Re: Arrange cells in ascending order

    Please don't quote the messages.

    By: Leith Ross
    Adding the Macro
    Select above macro
    Copy the macro above pressing the keys CTRL+C
    Open your workbook
    Press the keys ALT+F11 to open the Visual Basic Editor
    Press the keys ALT+I to activate the Insert menu
    Press M to insert a Standard Module
    Paste the code by pressing the keys CTRL+V
    Make any custom changes to the macro if needed at this time.
    Save the Macro by pressing the keys CTRL+S
    Press the keys ALT+Q to exit the Editor, and return to Excel.

    To Run the Macro...
    To run the macro from Excel, open the workbook, and press ALT+F8 to display the Run Macro Dialog. Double Click the macro's name to Run it.

  5. #5
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,692

    Re: Arrange cells in ascending order

    Inadvertently posted twice

  6. #6
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,692

    Re: Arrange cells in ascending order

    I don't know if you've got things straight yet but attached is an example.
    Attached Files Attached Files

+ 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. Arrange data in ascending order
    By bezbid in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 04-17-2016, 10:22 AM
  2. [SOLVED] any way to arrange the categories on a bar chart by ascending/descending order
    By tukae in forum Excel Charting & Pivots
    Replies: 2
    Last Post: 12-26-2015, 08:01 AM
  3. how to arrange multiple columns in ascending order
    By sanjay2210.msl in forum Excel General
    Replies: 2
    Last Post: 10-29-2013, 08:26 AM
  4. Arrange the sheet name in ascending order
    By PRADEEPB270 in forum Excel General
    Replies: 2
    Last Post: 05-13-2013, 08:08 AM
  5. How to arrange in ascending order all subtotals
    By faisal123 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 02-17-2013, 06:12 AM
  6. Arrange Data on Pivot table in Ascending order
    By Excel Dumbo in forum Excel General
    Replies: 1
    Last Post: 07-19-2012, 08:53 PM
  7. Formatting cells in Excel with Ascending/Descending order
    By Andrew Buckley in forum Excel General
    Replies: 0
    Last Post: 11-30-2005, 12:45 PM

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