Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone
Someone knows a way to concatenate 2 expressions in 1? I mean...i have a horizontal bar diagram that is counting people per region, but my cliente need the percentaje of that people in front of the quantity. Something like this.
I tried to concatenate that in the expression...like a Count(People)&' - '&Expression2. But isnt work
Some idea??
Try this:
Dual(Count(People)&' - '&Expression2, Count(People))
Make sure to select Expression Default for formatting on the Numbers tab of chart properties
Dual( num(count(People), '#.##0') & ' - ' & num(count(People) / count(TOTAL People), '#.##0,00%'), count(People))