Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 usman7vt
		
			usman7vt
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Can you please tell how I would display top 20 results only above a certain value. In the below example we have sales from different stores for a particular company. Some stores did not make any sales, how can I remove $0 values from the chart but still keep top 20 intact (As for another company we may have stores in which all 20 spots are populated making higher the $0 in sales).
 usman7vt
		
			usman7vt
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thanks for pointing me in the right directions, I had to convert zero values to first Null() and then drop them either using the 'Dimension' or 'Data Handling'
if(Sum([Sales]) > 0, Sum([Sales]), Null())
 JHuis
		
			JHuis
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Does supress zero values dont work?
 usman7vt
		
			usman7vt
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thanks for pointing me in the right directions, I had to convert zero values to first Null() and then drop them either using the 'Dimension' or 'Data Handling'
if(Sum([Sales]) > 0, Sum([Sales]), Null())
