Use This Template

Math.Ceiling(Number)

This function takes a decimal number and rounds it up to the nearest integer.

For instance, if the input is 2.33, it will return 3. If the input is already an integer like 7, it will remain the same. Essentially, this function doesn’t round to the closest integer; it always rounds up, whether the decimal part is greater or less than 0.5.

Math.Ceiling(Number)

This function takes a decimal number and rounds it up to the nearest integer.