roundup

roundup


I'm looking for a function similar to the Excel function roundup(number,num_digits) that will always round up to the specified number of num_digits.
 
Example:
 
roundup((39.97/36),2 ) = 1.12  (actual answer of 1.110278 is rounded up to 1.12)
 
Are there any plans for a roundup function?  Or a way that I can accomplish this programmatically?
 
Thanks in advance!