Forum Discussion
Anonymous
5 years agoNot applicable
Dynamic
Hello, Can anyone guide me how to make top 10 business process type dynamic? please refer to the below image - In the above image top 10 business process type is showing..I want to giv...
Anonymous
5 years agoNot applicable
HI Anonymous,
It should help if you provide a pbix file with some dummy data to test.
Regards,
Xiaoxin Sheng
Anonymous
5 years agoNot applicable
Hello Anonymous , I could do the dynamic top N selection. But the problem I am facing is it's working only on List or on dropdown.
I want to do it on slider. But not working...
The measure I am using is =
TOPN_BP =
VAR SelectedTop= SELECTEDVALUE(TopN[TopN])
Return
SWITCH(TRUE(),
SelectedTop=0, [Measure],
RANKX(
ALLSELECTED(Table[field]),
[Measure]
)
<=SelectedTop,
[Measure]
)
Can you tell me why it's not working on slider?