Range.SortSpecial (Excel)

Uses East Asian sorting methods to sort the range, a PivotTable report, or uses the method for the active region if the range contains only one cell. For example, Japanese sorts in the order of the Kana syllabary.

If no arguments are defined with the Sort method, Microsoft Excel will sort the selection chosen to be sorted in ascending order.

SortSpecial (SortMethod, Key1, Order1, Type, Key2, Order2, Key3, Order3, Header, OrderCustom, MatchCase, Orientation, DataOption1, DataOption2, DataOption3)


Application.Range("A1:A5").SortSpecial SortMethod:=xlPinYin

Arguments

Optional arguments

The following arguments are optional

SortMethod (XlSortMethod) - The type of sort. Some of these constants may not be available to you, depending on the language support (U.S. English, for example) that you have selected or installed.

Possible return values are xlPinYin - Phonetic Chinese sort order for characters. This is the default value, xlStroke - Sort by the quantity of strokes in each character.

Key1 (Range) - The first sort field, as either text (a PivotTable field or range name) or a Range object ("Dept" or Cells(1, 1), for example).

Order1 (XlSortOrder) - The sort order for the field or range specified in the Key1 argument.

Possible return values are xlAscending - Sorts the specified field in ascending order. This is the default value, xlDescending - Sorts the specified field in descending order.

Type - Specifies which elements are to be sorted. Use this argument only when sorting PivotTable reports

Key2 (Range) - The second sort field, as either text (a PivotTable field or range name) or a Range object. If you omit this argument, there's no second sort field. Cannot be used when sorting PivotTable reports.

Order2 (XlSortOrder) - The sort order for the field or range specified in the Key2 argument. Cannot be used when sorting PivotTable reports.

Possible return values are xlAscending - Sorts the specified field in ascending order. This is the default value, xlDescending - Sorts the specified field in descending order.

Key3 (Range) - The third sort field, as either text (a range name) or a Range object. If you omit this argument, there's no third sort field. Cannot be used when sorting PivotTable reports.

Order3 (XlSortOrder) - The sort order for the field or range specified in the Key3 argument. Cannot be used when sorting PivotTable reports.

Possible return values are xlAscending - Sorts the specified field in ascending order. This is the default value, xlDescending - Sorts the specified field in descending order.

Header (XlYesNoGuess) - Specifies whether or not the first row contains headers. Cannot be used when sorting PivotTable reports.

Possible return values are xlGuess - Excel determines whether there is a header, and where it is, if there is one, xlNo - Default. The entire range should be sorted, xlYes - The entire range should not be sorted.

OrderCustom - This argument is a one-based integer offset to the list of custom sort orders. If you omit OrderCustom, (normal sort order) is used

MatchCase (Boolean) - True to do a case-sensitive sort; False to do a sort that's not case-sensitive. Cannot be used when sorting PivotTable reports.

Orientation (XlSortOrientation) - The sort orientation.

Possible return values are xlSortColumns - Sorts by column, xlSortRows - Sorts by row. This is the default value.

DataOption1 (XlSortDataOption) - Specifies how to sort text in Key1. Cannot be used when sorting PivotTable reports.

Possible return values are xlSortNormal - default. Sorts numeric and text data separately, xlSortTextAsNumbers - Treat text as numeric data for the sort.

DataOption2 (XlSortDataOption) - Specifies how to sort text in Key2. Cannot be used when sorting PivotTable reports.

Possible return values are xlSortNormal - default. Sorts numeric and text data separately, xlSortTextAsNumbers - Treat text as numeric data for the sort.

DataOption3 (XlSortDataOption) - Specifies how to sort text in Key3. Cannot be used when sorting PivotTable reports.

Possible return values are xlSortNormal - default. Sorts numeric and text data separately, xlSortTextAsNumbers - Treat text as numeric data for the sort.