Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 kris_vliegen
		
			kris_vliegen
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi all,
Is there a way to show only the rows where the value of the first Expression is > 0?
I would only see the yellow rows in my Pivot table?
regards,
Kris
 prma7799
		
			prma7799
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		If you have more than one column then you may be write this
if (Column(1)> 0 , Sum(sales) , Null())
Or
Please share some sample app
 prma7799
		
			prma7799
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		If you have more than one column then you may be write this
if (Column(1)> 0 , Sum(sales) , Null())
Or
Please share some sample app
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		For each expression you have to use
If(Aantal >0, YourExpression)
 
					
				
		
 kris_vliegen
		
			kris_vliegen
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thanks,
this works. And then in the Presentation tab Suppress Zero-Values.
Regards,
Kris
 prma7799
		
			prma7799
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Good... 


