i have read a few posts on rounding numbers to the nearest whole interger, but is there any way to specify you only want to round to the next higher number, no matter the value of the decimal?
Thanks
My Product Information:
LiveCycle Designer, Windows
Math.ceil(fValue)
The Math object also has the following methods:
floor - "Returns the largest integer less than or equal to a number."
Math.floor(fValue)
round - "Returns the value of a number rounded to the nearest integer."
Math.round(fValue)
George Kaiser