Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
In a graphic, for example, of bars, when you click with the right button and choose "View data". In the table that shows you can you make a total sum of the values? Thank you
Ok!
1. You need to create real Total bar. Add 'Total' row in your dimension in script.
2. Add expression:
if(Dim<>'Total',
Sum(Value)
, Sum(Total Value))
OR
If you need to show totals only in view/export table, you need to make totals bar color as Background color and Total row must be empty string.
See pic below and expression:
Color expression:
if(Len(Categ)>0,
LightBlue()
, White())
Check attachment
Best regards