Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

While the SortRows provides everything needed to sort both one and two dimensional arrays, this service simplifies the process greatly of sorting single dimensional arrays. Have a small simple list to sort? This is the service for you. Simply pass in the array and choose one of four sorting options: "AscendingText", "DescendingText", "AscendingNumbers", or "DescendingNumbers".

  • "AscendingText" performs a left sort in alphabetical order.
  • "DescendingText" performs a left sort in reverse alphabetical order.
  • "AscendingNumbers" performs a sort in numerical order.
  • "DescendingNumbers" performs a sort in reverse numerical order.
  • "AscendingRight" performs a right-aligned sort in alphabetical order.
  • "DescendingRight" performs a right-aligned sort in reverse alphabetical order.

Note: You can append a "C" to the end of the above options to make them case insensitive.

The Delim parameter tells the service what delimiter is used to delimit elements in the given array. When omitted, @FM is assumed.

...