VBA Custom Sort crashing Excel

scoha

Active Member
Joined
Jun 15, 2005
Messages
428
I have this Custom Sort code in my macro but whenever it does the sort (which it completes successfully) when I go to save the file Excel just crashes out with no error message - why is this so?

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" & LR).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

Application.EnableEvents = True
End Sub
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.

Forum statistics

Threads
1,224,514
Messages
6,179,223
Members
452,896
Latest member
IGT

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