> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anlytic.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Round

Rondt een getal af op het opgegeven aantal cijfers

**Categorie:** `math`

**Syntax:**

```
Round([getal], [cijfers])
```

**Retourneert:** `Number`

**Contextfiltering:** ✓ Ja

## Parameters

| Naam      | Type             | Vereist | Beschrijving                                                                             |
| --------- | ---------------- | ------- | ---------------------------------------------------------------------------------------- |
| `getal`   | `getal of kolom` | ✓ Ja    | Het getal dat wordt afgerond                                                             |
| `cijfers` | `getal`          | ✗ Nee   | Het aantal decimalen waarop het getal wordt afgerond. Indien niet opgegeven, standaard 0 |

**Toegestane kolomtypen voor `getal`:** INT, FLOAT, DECIMAL

## Validatie

* Minimum parameters: 1
* Maximum parameters: 2

## Voorbeelden

```
Round([Kosten])
```

Rondt elke waarde in de kolom Kosten af naar het dichtstbijzijnde gehele getal

```
Round(3.1, 2)
```

Retourneert 3.1
**Resultaat:** `3.1`

```
Round(1234, -2)
```

Retourneert 1200
**Resultaat:** `1200`
