Returns the value rounded up. Optionally the number of decimal digits can be defined.
double Ceiling(double/int value; [int digits])
| value | A number. | 
| digits | The number of decimal digits in the return value. Negative numbers are also supported. | 
Example
Ceiling(731.9; -1)
Returns 740.
