Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
patrick, that's what i had posted in your original post a few days ago:
..sort Key1:=wks.Range("D4"), Order1:=xlAscending, Key2:=wks.Range("A4"), _ Order2:=xlAscending, Header:=xlGuess, OrderCustom:=2, MatchCase:= _ False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal, DataOption2 _ :=xlSortNormal -- Gary "Patrick Simonds" wrote in message ... The code below works great if the active worksheet is Employee_List, but if I call it from another active worksheet, I get a Sort referance not valid. This is supoose to sort the data on the Employee_List worksheet, while leaving me on the current (active worksheet) Private Sub CommandButton1_Click() 'Sort by Paratransit Drivers First Name Worksheets("Employee_List").Range("AA1").Value = 1 Dim wks As Worksheet Set wks = Worksheets("Employee_List") With wks.Range("A1:Z300") .Sort Key1:=Range("B2"), Order1:=xlAscending, Key2:=Range("C2") _ , Order2:=xlAscending, Key3:=Range("A2"), Order3:=xlAscending, Header:= _ xlYes, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _ DataOption1:=xlSortNormal, DataOption2:=xlSortNormal, DataOption3:= _ xlSortNormal End With End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
help please what am i doing wrong? | Excel Discussion (Misc queries) | |||
Insert Calculated Field (wrong Qty*Price = wrong Amount) | Excel Discussion (Misc queries) | |||
Where am I going wrong? | Excel Discussion (Misc queries) | |||
Please Tell Me What I Am Doing Wrong | Excel Programming | |||
What is wrong?? | Excel Programming |