Forum Discussion
Slider not working on dynamic Top N
Hello,
I having problem with dynamic TopN selection.
I could do the dynamic top N selection for my report.
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 =
Can you tell me why it's not working on slider?
- Anonymous5 years ago
amitchandak Thank you..the example that you have given helped me.
4 Replies
- amitchandak
Super User
Anonymous , Try like
OPN =
VAR _min= minx(allselected(TopN),TopN[TOPN])
VAR _max= maxx(allselected(TopN),TopN[TOPN])
Return
SWITCH(TRUE(),
SelectedTop=0, [Measure],
RANKX(
ALLSELECTED(Table[filed]),
[Measure]
)
<=Max,
[Measure]
)also refer : https://community.powerbi.com/t5/Community-Blog/Dynamic-TopN-made-easy-with-What-If-Parameter/ba-p/367415
- AnonymousNot applicable
amitchandak , its not working..I am referring the same post.....it only working with list,dropdown...
- amitchandak
Super User