Application Development and Automation 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: 
Read only

arithmetic operators

Former Member
0 Likes
439

Hi experts,

I need this : I have my variable num_pack = 0,04 type i.

I need my variable becomes 1.

Which operator do I need ( if exists ) ?

Thanks in advance.

Marco

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
412

Hi,

I think you need CEIL


new_var = CEIL(num_pack)

Regards,

Nick

2 REPLIES 2
Read only

Former Member
0 Likes
413

Hi,

I think you need CEIL


new_var = CEIL(num_pack)

Regards,

Nick

Read only

0 Likes
412

thanks a lot !!