Round is a mathematical function that rounds a number up or down by the specified digits.
where arg1 is one or more of the following values:
A numeric value. For example, Round(81.3987,3) returns the value 81.399. Numeric values can include decimals and negative values. See Numeric Arguments. | |
A pointer to a row, column, or cell within a grid. References can be specified in several ways. The reference syntax is: GridName.GridElement[segment(range)].property. See Row, Column, or Cell Reference Arguments. | |
Integer specifies the number of digits to round the number:
Round(3594.5567,3)=3594.557
Round(3594.5567,0)=3595
Round to the thousand, (also known as scaling):
Round(3594.5567,-3)=4000