Data Sorting

Sorting Data in Microsoft Excel

To sort data in Microsoft Excel:

  1. Select Data from the Sort menu. The Sort dialog will be displayed.
  2. Select a sorting option.

Generally, sorting is performed on a list - defined as a contiguous group of data where the data is displayed in columns.

Sorting Data with Aspose.Cells for Python Excel Library

Aspose.Cells for for Python via .NET provides the DataSorter class used to sort data in ascending or descending order. The class has some important members, for example, properties like Key1 … Key3 and Order1 … Order3. These members are used to define sorted keys and specify the key sort order.

You have to define keys and set the sort order before implementing data sorting. The class provides the sort method used to perform data sorting based on the cell data in a worksheet.

The sort method accepts the following parameters:

This example uses the template file “Book1.xls” created in Microsoft Excel. After executing the code below, data is sorted appropriately.

Sorting Data with Background Color Using Aspose.Cells for Python Excel Library

Excel provides features to sort data based on the background color. The same feature is provided using Aspose.Cells for for Python via .NET using DataSorter where SortOnType. CellColor can be used in add_key() to sort data based on the background color. All the cells which contain specified color in the add_key(), function are placed on top or bottom according to the SortOrder setting and order of the rest of the cells is not changed at all.

Following are the sample files which can be downloaded for testing this feature:

sampleBackGroundFile.xlsx

outputsampleBackGroundFile.xlsx

Advance topics