Round
Usage
Round(number, [digits])(number/10^digits) * (10^digits)
📘A negative digits value returns an integer with the specified least-significant digits zeroed.
📘Rounding is different than formatting. The result can have fewer digits than specified. Rounding does not add trailing zeroes.
Example
Round(Pi())Round(3.1, 2)More examples

Last updated
Was this helpful?