We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91adbcb + b382bd4 commit e0a4b07Copy full SHA for e0a4b07
1 file changed
query-languages/dax/round-function-dax.md
@@ -33,6 +33,12 @@ A decimal number.
33
34
- If `num_digits` is less than 0, the number is rounded to the left of the decimal point.
35
36
+- Ties are broken by rounding half away from zero (also known as commercial rounding).
37
+ | Examples | Result |
38
+ | --- | --- |
39
+ | `= ROUND(1.15, 1)` | 1.2 |
40
+ | `= ROUND(-1.15, 1)` | -1.2 |
41
+
42
- Related functions
43
- To always round up (away from zero), use the ROUNDUP function.
44
- To always round down (toward zero), use the ROUNDDOWN function.
0 commit comments