Integrated Application Platform › Forums › General › RoundUp problems › Re: Re: RoundUp problems
May 28, 2013 at 10:29 pm
#985
Keymaster
It’s because Suneido is interpreting it as:
-(90120.456789.Ceiling())
whereas what you want is:
(-90120.456789).Ceiling()
try using a variable:
x = -90120.456789
x.Ceiling()
same problem with your RoundUp example