Home > Working with Planning Projects > Building an Application > Building Application Models > Building A Cube Model > Measure Settings > Measure Logic Functions > ROUNDUP function
ROUNDUP function Last Updated 8/26/2008 1:06 PM
The ROUNDUP function will round a number upwards to the specified number of decimal places.
Format: ROUNDUP(VALUE, NO_DECIMAL_PLACES)
where
VALUE is the number to be rounded.
NO_DECIMAL_PLACES is a number specifying how many decimal places to round to. Note that a negative number will round number to the left of the decimal point.
EXAMPLE:
Assume the measure'EXPENSES' has a value of 2374.3254
ROUNDUP('EXPENSES', 0)
returns a value of 2375.00
ROUNDUP('EXPENSES', 1)
returns a value of 2374.40
ROUNDUP('EXPENSES', -1)
returns a value of 2380.00
See Also PREVIOUS function SUM function MAX function MIN function DEPRECIATION function INT function ROUND function ROUNDDOWN function IF Function SWITCH Function
|