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 statement

Former Member
0 Likes
393

hi ,

the below statement is not working please let me know

howto use multiple or

if tbl_infile-textID eq ('Z001' or 'Z002' or 'Z003')

MOVE tbl_infile-textID TO vz00.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
372

Hi,

Use like this.

if tbl_infile-textID eq 'Z001' or

tbl_infile-textID eq 'Z002' or

tbl_infile-textID eq or 'Z003'.

endif.

Edited by: santosh thorat on Dec 17, 2008 9:46 AM

2 REPLIES 2
Read only

Former Member
0 Likes
373

Hi,

Use like this.

if tbl_infile-textID eq 'Z001' or

tbl_infile-textID eq 'Z002' or

tbl_infile-textID eq or 'Z003'.

endif.

Edited by: santosh thorat on Dec 17, 2008 9:46 AM

Read only

Former Member
0 Likes
372

Hi Revanth,

Santhosh Code is Correct.Please close the thread.

Regards