Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a simple sort which I have used many times. I recorded it with the
macro recorder and it works fine but when in the code it gets a 'Runtime error 1004'. The sort reference is not valid. Make sure that it's within the data you want to sort and, the first Sort By box isn't the same or blank. Here is the code. Sheets("Report Log").Select Sheets("Report Log").Range("A1").Select Selection.CurrentRegion.Select Selection.Sort Key1:=Range("N2"), Order1:=xlAscending, Key2:=Range("A2") _ , Order2:=xlAscending, Key3:=Range("B2"), Order3:=xlAscending, Header:= _ xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom Thanmk you |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Sandy, it is hard to tell without seeing your worksheet, but if there is
an empty column between column N and Column A current region the it will tilt. One other thing is you begin your region with row 1 but set your key to row 2, that could be confusing the compiler and triggering the error message. "Sandy" wrote: I have a simple sort which I have used many times. I recorded it with the macro recorder and it works fine but when in the code it gets a 'Runtime error 1004'. The sort reference is not valid. Make sure that it's within the data you want to sort and, the first Sort By box isn't the same or blank. Here is the code. Sheets("Report Log").Select Sheets("Report Log").Range("A1").Select Selection.CurrentRegion.Select Selection.Sort Key1:=Range("N2"), Order1:=xlAscending, Key2:=Range("A2") _ , Order2:=xlAscending, Key3:=Range("B2"), Order3:=xlAscending, Header:= _ xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom Thanmk you |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Rather than use a selection use a preset range like my code below
Sub mysort() Sheets("Report Log").Select Sheets("Report Log").Activate Set sortrange = Range("A2:N3") sortrange.Sort _ Key1:=Range("N2:N3"), Order1:=xlAscending, _ Key2:=Range("A2:A3"), Order2:=xlAscending, _ Key3:=Range("B2:B3"), Order3:=xlAscending, _ Header:=xlGuess, _ OrderCustom:=1, MatchCase:=False, _ Orientation:=xlTopToBottom End Sub "JLGWhiz" wrote: Hi Sandy, it is hard to tell without seeing your worksheet, but if there is an empty column between column N and Column A current region the it will tilt. One other thing is you begin your region with row 1 but set your key to row 2, that could be confusing the compiler and triggering the error message. "Sandy" wrote: I have a simple sort which I have used many times. I recorded it with the macro recorder and it works fine but when in the code it gets a 'Runtime error 1004'. The sort reference is not valid. Make sure that it's within the data you want to sort and, the first Sort By box isn't the same or blank. Here is the code. Sheets("Report Log").Select Sheets("Report Log").Range("A1").Select Selection.CurrentRegion.Select Selection.Sort Key1:=Range("N2"), Order1:=xlAscending, Key2:=Range("A2") _ , Order2:=xlAscending, Key3:=Range("B2"), Order3:=xlAscending, Header:= _ xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom Thanmk you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Runtime 1004 | Excel Programming | |||
1004 runtime error | Excel Programming | |||
Runtime Error 1004 | Excel Programming | |||
Runtime 1004 Sort method of range | Excel Programming | |||
Runtime error 1004 | Excel Programming |