Calcular subtotales usando Aspose.Cells
Contents
[
Hide
]
Aspose.Cells - Calcular subtotales
Puede crear automáticamente subtotales para cualquier valor repetido en una hoja de cálculo. Aspose.Cells proporciona funciones API que lo ayudan a agregar subtotales a las hojas de cálculo mediante programación.
Java
//Instantiate a new workbook
Workbook workbook = new Workbook("book1.xls");
//Get the Cells collection in the first worksheet
Cells cells = workbook.getWorksheets().get(0).getCells();
//Create a cellarea i.e.., B3:C19
CellArea ca = new CellArea();
ca.StartRow = 2;
ca.StartColumn =1;
ca.EndRow = 18;
ca.EndColumn = 2;
//Apply subtotal, the consolidation function is Sum and it will applied to
//Second column (C) in the list
cells.subtotal(ca, 0, ConsolidationFunction.SUM, new int[]{ 1 });
//Save the excel file
workbook.save("AsposeTotal.xls");
Descargar código de ejecución
Descargar código de muestra
Para más detalles, visiteCreación de subtotales.