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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.