> For the complete documentation index, see [llms.txt](https://docs.tomat.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tomat.ai/data-transformation/formulas/math-functions/floor.md).

# Floor

Rounds a number down to the nearest integer multiple of specified significance.

```mathematica
Floor(30.527, 0.01) → 30.52
Floor(1.15, 1) → 1
```

#### **Inputs**

`Floor(value, [factor])`

* `value` - The value to round down to the nearest integer multiple of `factor`.
* `[factor]` - **\[optional**: `1` by default\*\*]\*\* - The number to whose multiples `value` will be rounded. `factor` may not be equal to `0`
