Round()
Round()
Type: REGULAR FUNCTION
Purpose: Round a REAL value to a known number of decimal places.
Round (3.0149, 2) → 3.01 (Rounded to 2 places)
Round (10.51, 0) → 11 (Rounded to 0 places)
Round (–1.06,1) → –1.1 (Rounded to 1 place)
Usage: Rounded = Round(Number, Places)
Rounded | REAL | The result. | |
Number |
REAL |
The quantity to be absoluted |
|
Places |
INDEX |
The number of decimal places desired. |
Comments are closed.