Forum Discussion
SeGr
Helper I
3 years agousing field parameters as a value in TopN
Hi team, I am using Field Parameters to switch between measures in a stacked chart. One requirement that I have is to calculate TopN. My issue is that the field parameters cannot be used as a v...
- 3 years ago
I was able to accomplish this by using
switch
(selectedvalue (measure parameter order),
0, [ measure 1 ],
1, [ measure 2 ],
etc
)
SeGr
Helper I
3 years agoI was able to accomplish this by using
switch
(selectedvalue (measure parameter order),
0, [ measure 1 ],
1, [ measure 2 ],
etc
)
BrigittaEga
3 years agoFrequent Visitor
I have a question. Do I need to create a new measurement for this? Thank you.