Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this whe
n = First Row to be sorted a = Last Row to be sorted c = the number of the column to sort by (ie. Column "C" = 3, Column "E" = 5 etc.) For x = n To a aNam = bp.Cells(x, 3).Value z = x For y = x + 1 To a If bp.Cells(y, 3).Value < aNam Then aNam = bp.Cells(y, 3).Value z = y End If Next y If z < x Then bp.Rows(z).Cut bp.Rows(x).Insert End If Next x --- Message posted from http://www.ExcelForum.com/ |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Zip code sort is an Excel problem even when using the special cat. | Excel Discussion (Misc queries) | |||
Newbie Question: Data/Sort | New Users to Excel | |||
VBA Newbie: Help with Do Loop code | Excel Discussion (Misc queries) | |||
Sort (in Excel) from code in MSProject | Excel Programming | |||
Newbie : Autofilter thru code ? | Excel Programming |