Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 smilingjohn
		
			smilingjohn
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi All,
What is this below expression does in the script ?
If(wildmatch(Questions,'*Complaint*')and not WildMatch(Questions,'*Air*','*Lodging*','*Cruise/Tour*','*Car*','*PWP*','*Follow-up*'),'Complaint',
 
					
				
		
 prat1507
		
			prat1507
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
The expression searches for text containing Complaint in Questions. If found (If(wildmatch(Questions,'*Complaint*'))
and does not contain Air, Lodging, Cruise/tour, Car, PWP or Follow-Up
not WildMatch(Questions,'*Air*','*Lodging*','*Cruise/Tour*','*Car*','*PWP*','*Follow-up*'),'Complaint')
would be classified as 'Complaint'.
Regards
Pratyush
 
					
				
		
 prat1507
		
			prat1507
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
The expression searches for text containing Complaint in Questions. If found (If(wildmatch(Questions,'*Complaint*'))
and does not contain Air, Lodging, Cruise/tour, Car, PWP or Follow-Up
not WildMatch(Questions,'*Air*','*Lodging*','*Cruise/Tour*','*Car*','*PWP*','*Follow-up*'),'Complaint')
would be classified as 'Complaint'.
Regards
Pratyush
