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
sarjensystems1
Helper III
Helper III

Dynamic Top N with hirarchy in matrix Visual

doubt.PNG

Hii

i have a requirement to display dynamic Top N category based on country and i am using Matrix visual

i am using this DAX function

TopN Sales=
VAR SelectedTop = SELECTEDVALUE('TopN'[TopN])
RETURN
SWITCH(TRUE(),
SelectedTop = 0, [sales],
RANKX (
ALL( Query1[Category]),
[sales]
)
<= SelectedTop,
[sales]
)
this is working fine...but when i drag subcategory to the matrix it is displaying wrong values...(filtering both category and subcategory)
my requirement is to display top N Category Values with out filtering the subcategory...
How to do this???
Thanks....
1 ACCEPTED SOLUTION
v-kelly-msft
Community Support
Community Support

Hi @sarjensystems1 ,

 

I have changed your measure and I guess this time it will satisfy your need:

 

 

TopN Sales = 
VAR SelectedTop = SELECTEDVALUE('TopN'[TopN])
RETURN
SWITCH(TRUE(),
SelectedTop = 0, [sales],
RANKX ( 
ALL('Table'),
[sales]
)
<= SelectedTop,
[sales]
)

 

And you will see:

 

Annotation 2020-02-12 112528.png

 

For the related .pbix file,pls click here.

 


 
Best Regards,
Kelly

View solution in original post

4 REPLIES 4
v-kelly-msft
Community Support
Community Support

Hi @sarjensystems1 ,

 

I have changed your measure and I guess this time it will satisfy your need:

 

 

TopN Sales = 
VAR SelectedTop = SELECTEDVALUE('TopN'[TopN])
RETURN
SWITCH(TRUE(),
SelectedTop = 0, [sales],
RANKX ( 
ALL('Table'),
[sales]
)
<= SelectedTop,
[sales]
)

 

And you will see:

 

Annotation 2020-02-12 112528.png

 

For the related .pbix file,pls click here.

 


 
Best Regards,
Kelly

v-kelly-msft
Community Support
Community Support

Hi @sarjensystems1

 

I'm not sure whether [sales] is a column or measure,but I tried to use your sample data and create a measure names [sales],when I select subcategory,it appears right, as you can see below:

 

171.png

For the related .pbix file,pls click here.

 

Best Regards,

Kelly

Ashish_Mathur
Super User
Super User

Hi,

Share some data and show the expected result.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
amitchandak
Super User
Super User

I did not test it but

You might have to try ALLEXCEPT( Query1[Category]) in place of ALL( Query1[Category]).

Refer

https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures

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.