How to check data item contains certain value or not?

Hi I have a data item which contains value of "ASR EPMR PD WEEA OFF-NET NEW OVC EPL ORDER" .
I have to check that whether it(i.e.Data item) contains ASR and WEEA and not contains COMBO.

How to do it? Any help ?
 

Deva393

Member
Use the string operation StartsWith command in calculation stage for ASR then "OR" logical operation
like that try for WEEA also the use "AND" logical operation
 

Nandhu_Rajesh

New Member
Try with Decision Stage , use AND operator.

eg: InStr(Trim([test]), "ASR")<>0 AND InStr(Trim([test]), "WEEA")<>0 AND InStr(Trim([test]), "COMBO")=0
 
Top