Ordenar datos en hojas de cálculo
Contents
[
Hide
]
Aspose.Cells - Ordenar datos en hojas de cálculo
Para ordenar los datos en la hoja de cálculo usando Aspose.Cells, simplemente invoque el método DataSorter.sorter() después de configurar algunas propiedades fáciles de configurar del área de la celda.
El código Java se menciona a continuación.
Ordenar datos usando Aspose.Cells
Java
//Obtain the DataSorter object in the workbook
DataSorter sorter = workbook.getDataSorter();
//Set the first order
sorter.setOrder1(SortOrder.ASCENDING);
//Define the first key.
sorter.setKey1(0);
//Set the second order
sorter.setOrder2(SortOrder.ASCENDING);
//Define the second key
sorter.setKey2(1);
//Create a cells area (range).
CellArea ca = new CellArea();
//Specify the start row index.
ca.StartRow = 1;
//Specify the start column index.
ca.StartColumn = 0;
//Specify the last row index.
ca.EndRow = 9;
//Specify the last column index.
ca.EndColumn = 2;
//Sort data in the specified data range (A2:C10)
sorter.sort(cells, ca);
Descargar código de ejecución
Descargar código de muestra
Para más detalles, visiteOrdenar datos , oClasificación de datos.