Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Microsoft Excel allows you to set the formula calculation mode, that is, the way formulas are calculated. There are three possible values:
To set the formula calculation mode in Microsoft Excel:
Aspose.Cells for Node.js via C++ also allows you to set the Formula Calculation Mode using FormulaSettings.getCalculationMode() mode property. You can assign it the CalcModeType enumeration which has one of the following values:
const path = require("path");
const AsposeCells = require("aspose.cells.node");
// The path to the documents directory.
const dataDir = path.join(__dirname, "data");
// Create a workbook
const workbook = new AsposeCells.Workbook();
// Set the Formula Calculation Mode to Manual
workbook.getSettings().getFormulaSettings().setCalculationMode(AsposeCells.CalcModeType.Manual);
// Save the workbook
workbook.save(path.join(dataDir, "output_out.xlsx"), AsposeCells.SaveFormat.Xlsx);
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.