Macro in excel to sort values

Hernan_g_f

New Member
Joined
Jul 26, 2022
Messages
25
Office Version
  1. 365
Platform
  1. Windows
Dear all,

I have a range: Column(A14:A74) with numbers. I want to create a macro so the column will be sort from lesser to upper values. How can I do it?

Regards,
Hernán
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Try this

VBA Code:
Sub SortColRangeAsc()
    Dim ws As Worksheet
    Dim rng As Range

[B]' ensure you enter your sheet name[/B]
    Set ws = ThisWorkbook.Sheets("Sheet1") 

    [B]' As per requirement Range [/B]
    Set rng = ws.Range("A14:A74")

    ' Perform the sort
    With ws.Sort
        .SortFields.Clear
        .SortFields.Add Key:=rng, Order:=xlAscending
        .SetRange rng
        .Header = xlNo
        .Apply
    End With

[B]'You can disable the if you need[/B]
    MsgBox "Column A14:A74 has been sorted in ascending order!", vbInformation
End Sub
 
Upvote 0
Solution
Thank you very mucha

Best,
Hernán


Try this

VBA Code:
Sub SortColRangeAsc()
    Dim ws As Worksheet
    Dim rng As Range

[B]' ensure you enter your sheet name[/B]
    Set ws = ThisWorkbook.Sheets("Sheet1")

    [B]' As per requirement Range [/B]
    Set rng = ws.Range("A14:A74")

    ' Perform the sort
    With ws.Sort
        .SortFields.Clear
        .SortFields.Add Key:=rng, Order:=xlAscending
        .SetRange rng
        .Header = xlNo
        .Apply
    End With

[B]'You can disable the if you need[/B]
    MsgBox "Column A14:A74 has been sorted in ascending order!", vbInformation
End Sub
 
Upvote 0

Forum statistics

Threads
1,226,113
Messages
6,189,046
Members
453,522
Latest member
Seeker2025

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top