Round Function
Round (number as Numeric, numberDigits as Numeric) as Numeric
Category: | Math |
Description: | Rounds a number to the specified number of digits |
Supported Context: | FormulaField And BusinessRules |
Parameters: | |
number as Numeric | Positive or negative numeric value or reference to a numeric field |
numberDigits as Numeric | Numeric value or reference to a numeric field |
Returned value as Numeric | Returns a number value equal to the number specified in the "number" parameter rounded to the number of digits specified in the "numberDigits" parameter |
Example #1 |
Build a workflow rule that sends an email with work item progress. If you want to get up to 2 decimal places, create the following formula within the body or subject of the email Round($PercentCompleted,2) |
Tips | Other similar functions include Ceil(), Floor(), Truncate() |
Related Functions |