Moteur de calcul de formules dans xlsx4j
Contents
[
Hide
]
Aspose.Cells - Moteur de calcul de formules
Le moteur de calcul de formules est intégré dans Aspose.Cells. Il peut non seulement recalculer la formule importée à partir d’un fichier de feuille de calcul conçu, mais prend également en charge le calcul des résultats des formules ajoutées à l’exécution.
Java
//Instantiating a Workbook object
Workbook book = new Workbook();
//Obtaining the reference of the newly added worksheet
int sheetIndex = book.getWorksheets().add();
Worksheet worksheet = book.getWorksheets().get(sheetIndex);
Cells cells = worksheet.getCells();
Cell cell = null;
//Adding a value to "A1" cell
cell = cells.get("A1");
cell.setValue(1);
//Adding a value to "A2" cell
cell = cells.get("A2");
cell.setValue(2);
//Adding a value to "A3" cell
cell = cells.get("A3");
cell.setValue(3);
//Adding a SUM formula to "A4" cell
cell = cells.get("A4");
cell.setFormula("=SUM(A1:A3)");
//Calculating the results of formulas
book.calculateFormula();
//Saving the Excel file
book.save(dataDir + "AsposeFormulaEngine.xls");
Télécharger le code en cours d’exécution
Télécharger le code source d’exemple
Pour plus de détails, visitez Moteur de calcul de formules.