Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Good Day Group,
Below code works fine as long Sheet(3) is active. How to write the code to work also when another WorkSheet is the active sheet.? Is that possible? Brgds CG Rosén Sheets(3).Columns("O:U").Sort Key1:=Range("O1"), Order1:=xlAscending, Header:=xlNo, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _ DataOption1:=xlSortTextAsNumbers |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
like this it should work..
Since you do not define the parent of sheets(3) if will run on the ACTIVEworkbook. WITH Sheets(3).Columns("O:U") .Sort Key1:= .Cells(1), Order1:=xlAscending, Header:=xlNo, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _ DataOption1:=xlSortTextAsNumbers END WITH keepITcool < email : keepitcool chello nl (with @ and .) < homepage: http://members.chello.nl/keepitcool "CG Rosén" wrote: Good Day Group, Below code works fine as long Sheet(3) is active. How to write the code to work also when another WorkSheet is the active sheet.? Is that possible? Brgds CG Rosén |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Try...... ActiveSheet.Columns("O:U").Sort Key1:=Range("O1"), Order1:=xlAscending, Header:=xlNo, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _ DataOption1:=xlSortTextAsNumbers Cheers Nigel "CG Rosén" wrote in message ... Good Day Group, Below code works fine as long Sheet(3) is active. How to write the code to work also when another WorkSheet is the active sheet.? Is that possible? Brgds CG Rosén Sheets(3).Columns("O:U").Sort Key1:=Range("O1"), Order1:=xlAscending, Header:=xlNo, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _ DataOption1:=xlSortTextAsNumbers |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA Sort method w/more than 3 Keys | Excel Discussion (Misc queries) | |||
Sort Method | Excel Programming | |||
Sort Method Questions | Excel Programming | |||
sort method frustration | Excel Programming | |||
Sort method of range | Excel Programming |