@Esox76
Use the Round function if you want 0.5 to be 1, 1.5 to be 2 - 0.3 to be 0, 1.3 to be 1, etc.
Round(Number, DecimalPlaces)
- Number - Required. The number to round.
- DecimalPlaces - Required. Number of decimal places to round to. Use a positive value to indicate decimal places right of the decimal separator, a negative value to the left, and zero for a whole number.
Or
Use the RoundUp function if you want it to always round up no matter what so 0.3 to be 1, 1.3 to be 2, etc.
RoundUp(Number, DecimalPlaces)
- Number - Required. The number to round.
- DecimalPlaces - Required. Number of decimal places to round to. Use a positive value to indicate decimal places right of the decimal separator, a negative value to the left, and zero for a whole number.
Example:
Round(7.9,0) would result in the number 8
Round(7.1,0) would result in the number 7
whereas
RoundUp(7.9,0) would result in the number 8
RoundUp(7.1,0) would result in the number 8 again
Check here: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-round for more info
See if the above helps @Esox76