ROUND

ROUND([Price] + ([Price] * [Tax Rate])/100)

Syntax

ROUND(numerical expression)

Rounds a number to a certain number of decimal places according to standard rules.

numerical expression: Basic arithmetic calculation created using the math operators +, -, *, /, numerical data fields and constants.

827 =ROUND(826.645, 0)
827 =ROUND(826.645)
826.6 =ROUND(826.645, 1)
826.65 =ROUND(826.645, 2)
826.645 =ROUND(826.645, 3)
830 =ROUND(826.645, -1)
800 =ROUND(826.645, -2)