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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Pavithran23
New Member

Dax Measure is not working

I need a help with dax measure 

doubt.PNGranking.PNG

Issue

Hi mam/sir currently working on oynx data project having one issue cant able to find the problem can you kindly look into it on your free time it would be really helpful - problem - trying to filter the table rows based on selected filter value for top and bottom its working but if i select another visual bottom ranking is not working for top its working fine. Attaching the images below. Thanking you in advance

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Pavithran23 

You can try the following solution.

1.Replace the ALL() function to ALLSELECTED() function in the measure.

2.Add calculate() funciton in the dax.

e.g 

Ranking = 
var _top=RANKX(ALL('Insurance Plicies'[ID]),CALCULATE([Total Claim Account]),,DESC)
var _bottom=RANKX(ALL('Insurance Plicies'[ID]),CALCULATE([Total Claim Account]),,ASC)
return IF([SelectedRankType]"Bottom",_bottom,_top)

If the information above cannot meet your requirements, can you offer some sample data or file so that can provide more suggestion for you.

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Pavithran23 

You can try the following solution.

1.Replace the ALL() function to ALLSELECTED() function in the measure.

2.Add calculate() funciton in the dax.

e.g 

Ranking = 
var _top=RANKX(ALL('Insurance Plicies'[ID]),CALCULATE([Total Claim Account]),,DESC)
var _bottom=RANKX(ALL('Insurance Plicies'[ID]),CALCULATE([Total Claim Account]),,ASC)
return IF([SelectedRankType]"Bottom",_bottom,_top)

If the information above cannot meet your requirements, can you offer some sample data or file so that can provide more suggestion for you.

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.