Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

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.

alpha_123_0-1619708348027.png

I want to do it on slider. But not working...

alpha_123_1-1619708398876.png

 

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?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

4 REPLIES 4
amitchandak
Super User
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

Anonymous
Not applicable

@amitchandak , its not working..I am referring the same post.....it only working with list,dropdown...

@Anonymous , Please check page last 2 page (20,21) 

Anonymous
Not applicable

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

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.