In expressions for financial calculations e.g. loan payments, interest payable etc. it would be useful to have a Rounding function that rounds a number to a specified number of digits. Where the round method always rounds to the "nearest" i.e.
Round(2.5,0) = 3 ... not "2" as per the Outsystems round function which rounds to the nearest even number!
Round(3.5,0) = 4
Round(2.4445,2) = 2.45