‎2007 Nov 05 3:56 AM
Hello Expert,
Is there a Ceiling method that I can get the smallest whole number greater than or equal to the specified number.
For Example,
I have number 1.2 and 1.9
I want to get the result of 2 for both.
Thanks,
Lena
‎2007 Nov 05 3:57 AM
Hi,
You can use the CEIL function..
Ex..
DATA: V_INPUT TYPE NETPR VALUE '1.2'.
DATA: V_OUTPUT TYPE I.
v_ouput = CEIL( v_input ).
write: / v_output.
Thanks
Naren
‎2007 Nov 05 3:57 AM
Hi,
You can use the CEIL function..
Ex..
DATA: V_INPUT TYPE NETPR VALUE '1.2'.
DATA: V_OUTPUT TYPE I.
v_ouput = CEIL( v_input ).
write: / v_output.
Thanks
Naren
‎2007 Nov 05 4:04 AM
‎2007 Nov 05 3:59 AM
check this
DATA: I TYPE I,
P TYPE P DECIMALS 2,
P = '3.4'.
I = CEIL( P ). " 4 - next largest whole number
regards
shiba dutta
‎2007 Nov 05 4:03 AM