![]() |
Sorting on partial Cell contents VBA
2003
Would like to issue a sort command in VBA that would 1st sort on Left(AccountNum),4) + Mid(AccountNum,6,2) then 2nd on Date. In VBA, is it possible manipulate the the following code to achieve above: Selection.Sort Key1:=Range("A2"), Order1:=xlAscending, _ Key2:=Range("I2"), Order2:=xlAscending, HEADER:=xlGuess, _ OrderCustom:=1, MatchCase:= False, Orientation:=xlTopToBottom, DataOption1:=xlSortTextAsNumbers, DataOption2:=xlSortNormal -OR- Must I use a helper column in Excel? TIA EagleOne |
Sorting on partial Cell contents VBA
Excel sorts by the contents of the cell. I think you'll have to use a helper
column to manipulate the data first. EagleOne wrote: 2003 Would like to issue a sort command in VBA that would 1st sort on Left(AccountNum),4) + Mid(AccountNum,6,2) then 2nd on Date. In VBA, is it possible manipulate the the following code to achieve above: Selection.Sort Key1:=Range("A2"), Order1:=xlAscending, _ Key2:=Range("I2"), Order2:=xlAscending, HEADER:=xlGuess, _ OrderCustom:=1, MatchCase:= False, Orientation:=xlTopToBottom, DataOption1:=xlSortTextAsNumbers, DataOption2:=xlSortNormal -OR- Must I use a helper column in Excel? TIA EagleOne -- Dave Peterson |
Sorting on partial Cell contents VBA
Thanks Dave, that is what I thought - but there are much better XL
minds out there than mine. EagleOne Dave Peterson wrote: Excel sorts by the contents of the cell. I think you'll have to use a helper column to manipulate the data first. EagleOne wrote: 2003 Would like to issue a sort command in VBA that would 1st sort on Left(AccountNum),4) + Mid(AccountNum,6,2) then 2nd on Date. In VBA, is it possible manipulate the the following code to achieve above: Selection.Sort Key1:=Range("A2"), Order1:=xlAscending, _ Key2:=Range("I2"), Order2:=xlAscending, HEADER:=xlGuess, _ OrderCustom:=1, MatchCase:= False, Orientation:=xlTopToBottom, DataOption1:=xlSortTextAsNumbers, DataOption2:=xlSortNormal -OR- Must I use a helper column in Excel? TIA EagleOne -- Dave Peterson |
All times are GMT +1. The time now is 07:01 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com