Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is it possible to show negative values on pie chart?
Yes, but you can't show negative and positive values at the same time. That's meaningless anyway in a pie chart so that shouldn't be a problem.
Thanks Gybsert,
Got a Problem I don't want to show negative values on pie chart, please help me. Below is the output of showing negative values.
got this problem (Positive and Negative values in chart)
HI,
How do you want to handle negatives?
If you just want to ignore them, you can set negatives to zero using rangemax()
if your expression is sum(value), you can use rangemax( sum( value), 0 )
It will compare sum(value) and 0 and get the max of them.. Thus, the minimum value is 0, replacing negative values.
Is it enought? If not, please, let us know
Regards,
Erich