Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hi guys,
I'm doing some set analysis on a pie chart where we only want to show 36 out of 38 values on it. I've done this previously using set analysis which works fine. However, my method has been to do it as follows:
count( {$< FieldA = {"1", "2", "4", "5"} >} FieldB)This therefore counts FieldB where the inputs are 1,2,4 or 5, ie, not 3. However, I don't see this as a particularly efficient way as if I have 38 values for a field and I want to exclude 2, I don't want a set analysis expression with the other 36 contained in it. Therefore is there a way in which you can use '<>' instead of '='? This would mean I could just state the 2 values i wish to exclude. It didnt seem to work for me when i used <>.
Any suggestions? I know I could do this in the script but I want to keep all the underlying data in a raw data table.
Thanks for your help.
.png) 
					
				
		
 Miguel_Angel_Ba
		
			Miguel_Angel_BaHello,
Use
Count({$< FieldA -= {3, 19} >} FieldB).png) 
					
				
		
 Miguel_Angel_Ba
		
			Miguel_Angel_BaHello,
Use
Count({$< FieldA -= {3, 19} >} FieldB) skaredovs
		
			skaredovs
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		You can do this without set analysis. Use IF.
count(IF(match(FieldA,'3','19')=0,FieldB))
Best regards,
Konstantins
