Number.RoundUp
This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.
Returns the larger integer greater than or equal to a number value.
Number.RoundUp(value as nullable number) as nullable number
| Argument | Description |
|---|---|
| value | Value to round up. |
Number.RoundUp(-1.2) equals -1
Number.RoundUp(1.2) equals 2
Show: