‎2006 Nov 01 10:13 PM
I m trying to use the ceil function in my program but it gives an error of statement not defined ?
Is this the rt way ?
data : numpage1 type P decimals 2.
numpage2 type i.
numpage1 = total / 8.
numpage2 = ceil(numpage1).
‎2006 Nov 01 10:21 PM
Hi,
Give a space after the ( and before ).
numpage2 = <b>ceil( numpage1 )</b>.
Thanks,
Naren