Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to display the total of each dimension in text object.
For example, if I have the following chart data
Dimension Count(ID)
A 10
B 12
C 20
I want to display it in text object as follows:
A: 10, B: 12, C: 20
Of course, the dimension values is not constant and can also change based on user selections.
I tried to use concat and AGGR function with no success.
thanks,
Karin
Something like this
Concat(Aggr(Dimension & ': ' & Count(ID), Dimension), ', ')
Something like this
Concat(Aggr(Dimension & ': ' & Count(ID), Dimension), ', ')
it works. thank for your help!