Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
watch for wordwrap:
Sub test() Dim lastrow As Long Dim i As Long lastrow = Cells(Rows.Count, "B").End(xlUp).Row For i = 2 To lastrow With Range("B" & i, Range("B" & i).End(xlToRight)) .Sort Key1:=Range("B" & i), Order1:=xlAscending, Header:=xlGuess, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlLeftToRight, _ DataOption1:=xlSortNormal End With Next End Sub -- Gary "LongBeachGuy" wrote in message ps.com... I am trying to make the following codes work for multiple rows. So far I can only do one row at a time. Please help. Range("B2").Select Range(Selection, Selection.End(xlToRight)).Select Selection.Sort Key1:=Range("B2"), Order1:=xlAscending, Header:=xlGuess, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlLeftToRight, _ DataOption1:=xlSortNormal How can I make "B2" a variable so that the sort can work it's way down the sheet? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sorting rows left to right numerically | Excel Worksheet Functions | |||
sorting contents from right to left | Excel Worksheet Functions | |||
Sorting rows (left to right) programmatically | Excel Programming | |||
Sorting rows (left to right) programmatically | Excel Programming | |||
Sorting Right to Left | Excel Worksheet Functions |