I don't know of any inbuilt function but youe could use something like
Code:
function roundUp(num)
dim arrNum, leftover
arrNum = split(cstr(num),".")
roundUp = arrNum(0)
leftover = num - roundUp
if leftover > 0 then roundUp = roundUp + 1
end function
======================================
They say, best men are moulded out of faults,
And, for the most, become much more the better
For being a little bad.
======================================