How do I write a Macro to sort a row from left to right?

Steveo1

New Member
Joined
Nov 15, 2005
Messages
1
I am trying to record a macro to repeat the task of sorting a row of dates from left to right, but I need to move to the next row down and repeat the macro.. and so on. Any help?
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
This seems to work for me. In this example, columns A:E contain the data to be sorted for each row:

Code:
Sub Macro1()
Dim LastRow As Long, i As Long

LastRow = Range("A65536").End(xlUp).Row

For i = 1 To LastRow
    Range(Cells(i, "A"), Cells(i, "E")).Sort Key1:=Cells(i, "A"), _
    Order1:=xlAscending, Header:=xlGuess, OrderCustom:=1, _
    MatchCase:=False, Orientation:=xlLeftToRight, _
    DataOption1:=xlSortNormal
Next i

End Sub
 
Upvote 0
Try it like this:

Code:
Sub Macro1() 
Dim LastRow As Long, i As Long 

LastRow = Range("A65536").End(xlUp).Row 

For i = 1 To LastRow 
    Range(Cells(i, "A"), Cells(i, "E")).Sort Key1:=Cells(i, "A"), _ 
    Order1:=xlAscending, Header:=xlGuess, OrderCustom:=1, _ 
    MatchCase:=False, Orientation:=xlLeftToRight
Next i 

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,648
Messages
6,120,725
Members
448,987
Latest member
marion_davis

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