Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Looking for Ceiling method

Former Member
0 Kudos

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

1 ACCEPTED SOLUTION

Former Member
0 Kudos

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

4 REPLIES 4

Former Member
0 Kudos

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

0 Kudos

Thanks so much....

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi,

Try to use the following command,

CEIL(a)