Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How to show negative values in brackets () in pie chart?
For ex: -53 as (53) and -111 as (111).
Hi manojkulkarni ,
Thanks for your advise. I need to show negative mouse over values in brackets.
Hi,
Check this link
How to create a pie chart with positive and negative values
OR try this expression
=dual(fabs(sum(sales)),Sum(sales))
Regards,
Jagan.
Hi Arjun,
How did you solve this problem ? Please share the solution
Hi Manoj,
This is the celambarasansolution.
If(Sum(Sales)<0, Num(Fabs(Sum(Sales)), '(#,###'), Num(Sum(Sales), '#,###')
Thanks Arjun.
PFA...