ROUND
- Last UpdatedMar 03, 2025
- 1 minute read
The ROUND() function produces a stream of results rounding a stream's values to the nearest integer.
Syntax
|
Format |
Stream = ROUND( Stream ) |
|
Arguments |
Stream - A stream of values |
|
Description |
Returns a stream that is a copy of the input stream, with all values rounded to the nearest integer. |
Example 1
The following expression returns the rounded value of a temperature to the nearest integer.
ROUND(PLPWeather.ParisTemperature )

Example 2
The following expression returns the rounded value of the difference between two temperatures.
ROUND( PLPWeather.NewYorkTemperature - PLPWeather.LosAngelesTemperature )