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

If statements

Former Member
0 Likes
444

Hi Gurus!

lf you can pls let me know as to how I write a IF statement to read all the values starting from 0* (wildcharacter ) ELSE select the right value.

Thanks.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
429

data: SomeField(10) type c.

if SomeField+0(1) = '0'.

  • the first character is az zero

else.

  • it is not a zero

endif.

3 REPLIES 3
Read only

Former Member
0 Likes
430

data: SomeField(10) type c.

if SomeField+0(1) = '0'.

  • the first character is az zero

else.

  • it is not a zero

endif.

Read only

0 Likes
429

Thanks a lot!

Read only

Former Member
0 Likes
429

thanks..