> For the complete documentation index, see [llms.txt](https://concentra-analytics.gitbook.io/working-with-data/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://concentra-analytics.gitbook.io/working-with-data/numbers/round.md).

# Round

## Excel

\=\~ROUND!\~(‹number›, ‹decimals›)

```
=ROUND(A1,3)

=ROUND(3.14159,2) // Returns 3.14
```

NB. To round to the nearest integer, set ‹decimals› to `0`.

You can also force Excel to round up or down (similar to a [Floor](https://github.com/concentra-analytics/working-with-data/tree/51c414aad5b91e0da2741a07a436476e362ed6ce/numbers/numbers/floor.md) function) using: <br>

* \=\~ROUNDUP!\~(‹number›, ‹decimals›) or <br>
* \=\~ROUNDDOWN!\~(‹number›, ‹decimals›)

```
=ROUNDUP(2.7182,3) // Returns 2.719
```

```
=ROUNDDOWN(2.7182,3) // Returns 2.718
```

## Tableau

\~ROUND!\~(‹measure›, ‹decimals›)

```
ROUND([Cost],2)

ROUND(3.14159,2) // Returns 3.14
```

NB. To round to the nearest integer, set ‹decimals› to `0`.

## Alteryx

\~ROUND!\~(‹measure›, ‹decimals›)

```
ROUND([Cost],2)

ROUND(3.14159,2) // Returns 3.14
```

NB. To round to the nearest integer, set ‹decimals› to `0`.

## OrgVue

node.‹measure›.value.\~format!\~(«'formatting'»); \
&#x20;OR \
&#x20;‹measure›.\~round!\~(«decimals»);

```
node.salary.format('000') // 8004.34 -> 80.0K
```

```
node.cost.round(2)
```

NB. Omitting the number of decimals automatically rounds the value to 0dp. \~Math.round!\~(‹measure›) is also available but it does not allow you to specify the number of decimals.

## tSQL

\~ROUND!\~(‹field›, ‹decimals›)

```
SELECT ROUND(Cost,2) 
FROM OrdersData
```

## Python

\~round!\~(‹measure›«, decimals»)

```
round(cost)

round(math.pi,2) 
# Returns 3.14 assuming the math library has been imported
```

NB.:

* Omit «decimals» to round to the nearest integer.
* The above example assumes a variable has been declared for `cost` and that the math library has deen installed (`import math`). For more information, go to [General > Variables](https://orgvue.gitbooks.io/formula-translator/content/general/variables.html).
