ROUND() Function - Round Number

Syntax

ROUND(expr{,int}{,ERR=lineref})

Description

The ROUND() function rounds a number to a specified number of decimal places or to the current precision value.

Parameter

Description

expr

Number to be rounded.

int

Number of decimal places.

If this parameter is not included, the number will be rounded according to the current precision level.

ERR=lineref

Branch to be taken if an error occurs during execution.

Examples

Example 1

The following rounds the value to the current precision value:

>LET A=ROUND(11.2344521)

>PRINT "A =",A

A = 11.23

Example 2

The following rounds the value to four decimal places:

>LET NUMB=234.9438573498573

>LET B=ROUND(NUMB,4)

>PRECISION 4

>PRINT "B =",B

B = 234.9439

Example 3

The following rounds a calculation to two decimal places:

>LET RATE=4.25; LET HOURS=79.234

>LET PAY=ROUND(RATE*HOURS,2)

>PRINT "Pay =",PAY

Pay = 336.74

See Also

Functions - Alphabetical Listing