ceiling
Round up to a multiple of significance.
Syntax
Section titled “Syntax”v = ceiling(number, significance)Description
Section titled “Description”Returns number rounded up (away from zero) to the nearest multiple of significance. significance must have the same sign as number.
Examples
Section titled “Examples”ceiling(2.5, 1) % 3ceiling(7.3, 0.5) % 7.5ceiling(-2.5, -1) % -3