-
-
Couldn't load subscription status.
- Fork 39
getRecalculateFormulasOnNextOpen
Julian Halliwell edited this page Apr 16, 2025
·
1 revision
Returns whether all formulas in either the entire workbook or the specified sheet will be recalculated when the spreadsheet file is next opened (in Excel).
getRecalculateFormulasOnNextOpen( workbook, [, sheetName ] )
-
workbookspreadsheet object
-
sheetNamestring: if specified returns whether formulas in that sheet will be recalculated (instead of all sheets in the workbook)
boolean
Chainable? No.
spreadsheet = New spreadsheet();
workbook = spreadsheet.new();
spreadsheet.setCellValue( workbook , "72", 3, 4 ); /* set value of cell */
spreadsheet.setRecalculateFormulasOnNextOpen( workbook , true );
spreadsheet.getRecalculateFormulasOnNextOpen( workbook ); //true