Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 vengadeshpalani
		
			vengadeshpalani
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi All
in excel i have use this formula, how to convert into qlikview logic
=IF(ISNUMBER(SEARCH("outside",A2)),"Outside","Inside")
PFA
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be this
If(WildMatch(Input, '*Outside*'), 'Outside', 'Inside') as Output
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be this
If(WildMatch(Input, '*Outside*'), 'Outside', 'Inside') as Output
Or This?
If(SubStringCount(Input, 'OUTSIDE'),'Outside','Inside') as Output
