# SpreadsheetSetAutoCalculate

Sets whether formulas automatically calculate in a spreadsheet

## Method Signature

```
SpreadsheetSetAutoCalculate()
```

### Arguments

No arguments.

## Examples

Enable/disable auto-calculation:

```js
// Disable automatic formula calculation
var spreadsheet = SpreadsheetNew();
SpreadsheetSetAutoCalculate( spreadsheet, false );
```

## Related

* [SpreadsheetGetAutoCalculate()](https://boxlang.ortusbooks.com/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/reference/built-in-functions/spreadsheetgetautocalculate) - Get setting
* [SpreadsheetSetCellFormula()](https://boxlang.ortusbooks.com/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/reference/built-in-functions/spreadsheetsetcellformula) - Set formula
