SpreadsheetGetForceFormulaRecalculation

Gets whether formulas will be recalculated when the spreadsheet is opened

Method Signature

SpreadsheetGetForceFormulaRecalculation()

Arguments

No arguments.

Examples

Check force recalculation setting:

// Check if formulas force recalculation
var spreadsheet = SpreadsheetNew();
var forceRecalc = SpreadsheetGetForceFormulaRecalculation( spreadsheet );
println( "Force recalculation: " & forceRecalc );

Last updated

Was this helpful?