3334353637383940414243
//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("data/AsposeFormulaEngine.xls"); } }