Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
How can I show the total in Legend area? Or I have to create another object to show the total.
Thanks in advance,
Deng
Sure,
You can write an expression there like this:
='Total '& count( ID)
(you can replace count(ID) by any expression you want)
Rgds,
Erich
It does not go to the legend area, but you create a text label on the chart.
Go to chart properties -> presentation
Include an expression in 'Text in Chart'.
Go back to the chart, you should see your text somewhere.
Select the chart and Hold Ctrl+Shift to be able to move this label.
Regards,
Erich
Thank you, Erich.
Can I add a number total after the label?
Sure,
You can write an expression there like this:
='Total '& count( ID)
(you can replace count(ID) by any expression you want)
Rgds,
Erich
You simple have to add your formula or compose a textstring, like
='Total sales = ' & NUM(SUM(Sales), '#,##0$')
HTH
Peter
Thank you Erich and Priper. I appreciate your help.