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

# Mod

Returns the modulo value, which is the remainder of dividing the first argument by the second argument

```mathematica
Mod(20, 6) → 2
Mod(100, 10) → 0
```

#### **Inputs**

`Mod(dividend, divisor)`

* `dividend` - A number expression
* `divisor` - A number expression
