Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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 =

VAR SelectedTop= SELECTEDVALUE(TopN[TOPN])
Return
SWITCH(TRUE(),
SelectedTop=0, [Measure],
RANKX(
ALLSELECTED(Table[filed]),
[Measure]
)
<=SelectedTop,
[Measure]
)

 

Can you tell me why it's not working on slider?

  • Anonymous's avatar
    Anonymous
    5 years ago

    amitchandak Thank you..the example that you have given helped me.

4 Replies