Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hi All,
I am trying to create a Stacked bar chart. My data has some negative valves.
Problem:
Total in stacked bar chart add the negative values instead of instead of subtracting it.
Ex: Total should be 2913
ie. Chock Pen
| 3895 | -982 | 
So for Mumbai sum of sales should be 2913.
However my graph shows total as 3895. Besides that I dont want to show negative values in bar chart.
If I do it with Pivot my Total comes correctly; if I apply stacked bar chart the values mess up.
Any help or pointers in this regard are appreciated.
 
					
				
		
 nizamsha
		
			nizamsha
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		=if(sum(Sales)<=0,fabs(sum(Sales)),sum(Sales))
use the above one to add the positive and negative as a single bar
=if(sum(Sales)>=0,sum(Sales))
use the second one to omit negative bars
 
					
				
		
 nizamsha
		
			nizamsha
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I dont know excatly what you r asking but attached two solution
 satishkurra
		
			satishkurra
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
Please use RangeMax function to eliminate Negative Values from the report.
In Chart Properties for Expressions Tab
RangeMax(Sum(Sales),0)
Thanks
Satish
