Does the Sort method in VBA(XL2000) allow for a custom sort order? The following excerpt from the VBA Help seems to imply that it does, but I can’t figure out how to define and reference the custom sort order (presumably a user-defined array).
expression.Sort(Key1, Order1, Key2, Type, Order2, Key3, Order3, Header, OrderCustom, MatchCase, Orientation, SortMethod)
…
OrderCustom Optional Variant. This argument is a 1-based integer offset nto the list of custom sort orders. If you omit OrderCustom, 1 (Normal) is used.
Thanks.