Range.Sort Sort Method of Range Class Failed

St Jimmy

New Member
Joined
Oct 29, 2015
Messages
36
I think I'm doing something dumb since the solutions I've researched online don't work but I'm trying to sort a dynamic range of cells by their first column.

Code:
Dim LastRow As Integer
Dim LIB As String
LIB = "Library"


Sheets(LIB).Range("A65536").End(xlUp).Select
LastRow = ActiveCell.Row  'Determine last row


Sheets(LIB).Range("A9:R" & LastRow).Sort key1:=Range("A9:A" & LastRow), _
    order1:=xlAcending, Header:=xlNo

I have 4484 rows of data, column A is a text index. AB000100 - AB0014493, no cell in the col A range is empty. There are no duplicates. In the other cells the empty cells are represented by -
All cells are General Category.

When I run the macro it does not sort and spits a run-time error '1004' Sort method of Range class failed.

The data can be sorted manually, but what fun is that? I've never used Range.sort before so I think/hope it's something easy I'm forgetting...

Thank you!!!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
You're missing an order 1, it should be
Rich (BB code):
order1:=xlAscending
 
Last edited by a moderator:
Upvote 0
Try to avoid using Select/Activate statements whenever possible. They slow down your code, and are usually not necessary, i.e.
Code:
Dim LastRow As [COLOR=#ff0000]Long[/COLOR]
Dim LIB As String
LIB = "Library"

[COLOR=#ff0000]LastRow = Sheets(LIB).Cells(Rows.Count, "A").End(xlUp).Row[/COLOR]

Sheets(LIB).Range("A9:R" & LastRow).Sort key1:=Range("A9:A" & LastRow), _
    order1:=[COLOR=#ff0000]xlAscending[/COLOR], Header:=xlNo
 
Upvote 0
In addition you can get the last row with one line of code instead of using a select
Code:
LastRow = Sheets(LIB).Cells(Rows.Count, 1).End(xlUp).Row
 
Upvote 0
Thank you, thats a great point.
What benefit does declaring Integers as Longs have? Dont Ints take up less memory than long (not that it matters on modern computers...)
 
Upvote 0
The difference is that newer versions of Excel (since 2003) have over a million rows. Integers only go as high as 32,767.
So if you ever had a last row number past 32,767, it would result in errors if you declared it as Integer instead of Long.
Using Long ensures that won't be an issue.
 
Upvote 0
The difference is that newer versions of Excel (since 2003) have over a million rows. Integers only go as high as 32,767.
So if you ever had a last row number past 32,767, it would result in errors if you declared it as Integer instead of Long.
Using Long ensures that won't be an issue.

Thank you Joe
 
Upvote 0
In addition to what Joe4 said, I believe that integer variables are converted to long at runtime, so you might as well declare them as such to begin with.
 
Upvote 0
I believe that integer variables are converted to long at runtime, so you might as well declare them as such to begin with.
If that is true, wouldn't it NOT result in errors if your last row was greater than 32,767?
However, I did some testing and confirmed the following:

If last row in column A is 555,555
this will return an overflow error:
Code:
Dim LastRow As Integer
LastRow = Cells(Rows.Count, "A").End(xlUp).Row
but this does not
Code:
Dim LastRow As Long
LastRow = Cells(Rows.Count, "A").End(xlUp).Row

If it converts Integer to Long at run-time, shouldn't the first one work without an overflow error also?
 
Upvote 0

Forum statistics

Threads
1,214,986
Messages
6,122,611
Members
449,090
Latest member
vivek chauhan

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