In my script if have a simple formula:
Var C = (Var A / Var B)
Typically, the result of Var C will be a number like "2.325...."
I want to round it up to a whole number, in this case "3". To do this I have tried Math.Ceiling() but when the number is printed onto the output, it rounds down to "2". What method should I use to round up to the next whole number?

Comment