====== Round ====== Round( [, ]) The function returns the passed value rounded to the specified number of digits. Rounding is done according to standard rules. **Parameters** |< 100% 15% >| |value|The value on which the operation will be performed.| |round|The number of decimal places to round to. If this number is zero or omitted, it is rounded up to an integer value.| **Related** [[ceil]], [[floor]] **Examples** MsgBox(Round(1.2778, 2)) # --> 1.28 MsgBox(Round(2.708)) # --> 3