Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have created a stacked bar chart with two different sales types (used expression not dimensions). I have used negative sales to divide the sales by origin. Now I want remove negative sign from the texts. Is it possible. For example. Instead of -1385 I want 1385
Yes you can change the format pattern for that expression in the Number Tab of the chart properties to
#,##0%;#,##0%
May be like this:
Dual(Fabs(YourCurrentExpression), YourCurrentExpression)
Replace YourCurrentExpression placeholder with whatever your expression you are using today.
Yes you can change the format pattern for that expression in the Number Tab of the chart properties to
#,##0%;#,##0%
Yes! works! Thanks