Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hi, I have the following status for my records:
Well, I want to filter each record that contains "BLOQ" inside status value. In SQL exists the "InStr()" function but I haven't found any similar function in qlikview.
 maxgro
		
			maxgro
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		where wildmatch(status, '*BLOQ*')
 
					
				
		
 marcus_sommer
		
			marcus_sommer
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Have a look on match() and wildmatch().
- Marcus
 maxgro
		
			maxgro
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		where wildmatch(status, '*BLOQ*')
 
					
				
		
 MarcoWedel
		
			MarcoWedel
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		To find the position of a substring in a string you can use the Index() function in QlikView.
So this would be the equivalent to the SQL InStr() function.
hope this helps
regards
Marco
 
					
				
		
Many thanks, thats just that i've been triying to find.
