CustomSort crashing my worksheet??

scoha

Active Member
Joined
Jun 15, 2005
Messages
428
I have a worksheet in which I have placed a Custom sort as follows:

Code:
'This bit sorts the OpenIssues according to CustomSort List

    'Deletes any Custom Lists already installed
        For x = Application.CustomListCount To 5 Step -1
            Application.DeleteCustomList (x)
        Next x
    
    ' custom sort order text
    Application.AddCustomList ListArray:=Sheets("Validations").Range("CustomSort")

    ' sort using latest custom sort order entry
    Range("a7:l" & Rows.Count).Sort Key1:=Range("G6"), Order1:=xlAscending, Header:=xlGuess, _
                OrderCustom:=Application.CustomListCount + 1, MatchCase:=False, _
                Orientation:=xlTopToBottom, DataOption1:=xlSortNormal

    ' remove latest custom sort entry order
    Application.DeleteCustomList Application.CustomListCount

Trouble is, ever since I did this I am crashing and corrupting the file - anyone have a clue why this might be so?
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.

Forum statistics

Threads
1,224,503
Messages
6,179,136
Members
452,890
Latest member
Nikhil Ramesh

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