VBA Sort issue

Donai

Well-known Member
Joined
Mar 28, 2009
Messages
543
Hi, why do i get "Sort method of range class failed for the below?


Code:
With shtAsset
  .Range("A5").Sort Key1:=.Range("P6"), Order1:=xlAscending, _
    Key2:=.Range("E6"), Order2:=xlAscending, Key3:=.Range("G6"), Order3:=xlDescending, Header:=xlGuess, _
     ordercustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
 End With
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Try just removing that parameter altogether. CustomOrder was introduced in Excel 2007.
 
Upvote 0
Still get the same error 1004 error

.Range(gGroupHeader).Sort Key1:=.Range("P6"), Order1:=xlAscending, _
Key2:=.Range("E6"), Order2:=xlAscending, Key3:=.Range("G6"), Order3:=xlDescending, Header:=xlGuess, _
MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
 
Upvote 0
Maybe it should be if gGroupHeader is a named range

Rich (BB code):
.Range("gGroupHeader").Sort Key1:=.Range("P6"), Order1:=xlAscending, _
 Key2:=.Range("E6"), Order2:=xlAscending, Key3:=.Range("G6"), Order3:=xlDescending, Header:=xlGuess, _
  MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal

or is the sheet protected?
 
Upvote 0
Even if do "A5" i still get the same error. No sheet is not protected

.Range("A5").Sort Key1:=.Range("P6"), Order1:=xlAscending, _
Key2:=.Range("E6"), Order2:=xlAscending, Key3:=.Range("G6"), Order3:=xlDescending, Header:=xlGuess, _
MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
 
Upvote 0
Well, I tried this and it worked without error

Code:
With ActiveSheet
    .Range("A5").Sort Key1:=.Range("P6"), Order1:=xlAscending, _
Key2:=.Range("E6"), Order2:=xlAscending, Key3:=.Range("G6"), Order3:=xlDescending, Header:=xlGuess, _
MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
End With
 
Upvote 0
Ok i manage to get it to work, by closing the workbook and reopening, dont know why but it worked.
 
Upvote 0
Donai,

How about:

Code:
With shtAsset
  .Range("A5[B][SIZE="5"]:P20[/SIZE][/B]").Sort Key1:=.Range("P6"), Order1:=xlAscending, _
    Key2:=.Range("E6"), Order2:=xlAscending, Key3:=.Range("G6"), Order3:=xlDescending, Header:=xlGuess, _
     ordercustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
 End With
 
Upvote 0

Forum statistics

Threads
1,224,602
Messages
6,179,843
Members
452,948
Latest member
UsmanAli786

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top