Round, RoundDown, and RoundUp functions in Power Apps
In this exercise, we will learn about the Round, RoundDown, and RoundUp functions in Power apps. These functions round a number to the specified number of decimal places.
Example: Let’s practice the Round functions in power apps. The Round function rounds up the digit if the next digit is 5 or higher. Otherwise, this function rounds down.
The Syntax of the Round function is shown below:
Power Apps Syntax Round(number, number_of_digits)
Here, the number represents the number which we are going to round, and the number_of_digits represents the number of fractional digits to use for rounding the number.
Power Apps Formula
The output of the above power apps code is 5454.68.

If we specify the number_of_digits parameter to 0, then the number is rounded to the nearest integer.
Power Apps Formula
The output of the above power apps code is 5454.

The RoundUp function always rounds up to the next higher number, away from zero.
Power Apps Formula
The output of the above power apps code is 5454.68.

The RoundDown function always rounds down to the previous lower number, towards zero.
Power Apps Formula
