# SpreadsheetGetForceFormulaRecalculation

Gets whether formulas will be recalculated when the spreadsheet is opened

## Method Signature

```
SpreadsheetGetForceFormulaRecalculation()
```

### Arguments

No arguments.

## Examples

Check force recalculation setting:

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

## Related

* [SpreadsheetSetForceFormulaRecalculation()](https://boxlang.ortusbooks.com/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/reference/built-in-functions/spreadsheetsetforceformularecalculation) - Set recalc
* [SpreadsheetGetAutoCalculate()](https://boxlang.ortusbooks.com/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/reference/built-in-functions/spreadsheetgetautocalculate) - Get auto-calc
