Assume I have a recordset as this :
a1 a2 a3
1 1 2
2 2 1
1 2 1
and I want to convert it from absolute value to percentage so my outcome becomes like this :
a1 a2 a3
25% 25% 40%
50% 25% 40%
25% 50% 20%
Or in other words, for each of my attributes I want to get the sum by attribute, and then for each of the value the percentage.
I thought I would be able to do this with the loop attributes operator but I am not able to select the content so I'm doing something wrong somewhere.
What would be the easiest way to approach this?