Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Stacked Bar Chart: Eliminate negative values from Total

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.

3 Replies
nizamsha
Specialist II
Specialist II

=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
Specialist II
Specialist II

I dont know excatly what you r asking but attached two solution

satishkurra
Specialist II
Specialist II

Hi

Please use RangeMax function to eliminate Negative Values from the report.

In Chart Properties for Expressions Tab

RangeMax(Sum(Sales),0)

Thanks

Satish