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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Filtered by certain slicer

Hi Experts, 

 

In my dashboard, there is a Measure (Measure_Rank) which ranked the customer by frequency.  

Dax is as follow:

 

Frequency = DISTINCTCOUNT('Table'[Date])
Measure_Rank = 
VAR newtable = SUMMARIZE ( ALLSELECTED ( 'Table' ), 'Table'[Customer ID] )
RETURN RANKX ( newtable, [Frequency],, ASC ) - 1

I want the Measure_Rank vary by Date and Centre Code only,
Pcode slicer is allowed to filter the central table, but it cannot affect the Rank result. 
SimonChung_GGGG_0-1646576845684.png

In my case I cannot use editing the visual interations, because the result is not the end, it will affect the latter part.

Wish anyone can help!! thank so much!!

 

Please find the PBIX here: RFM Demo 4.pbix

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

Please try the following formula:

 

 

Measure = CALCULATE ( [Measure_Rank], REMOVEFILTERS ( 'Table'[Pcode] ) )

 

vkkfmsft_0-1646799105067.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
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

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I uderstood your question correctly, but please try the below measure.

 

Measure_Rank =
VAR newtable =
CALCULATETABLE (
SUMMARIZE ( ALLSELECTED ( 'Table' ), 'Table'[Customer ID] ),
REMOVEFILTERS ( 'Table'[Pcode] )
)
RETURN
RANKX ( newtable, [Frequency],, ASC ) - 1


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Anonymous
Not applicable

@Jihwan_Kim Really really thank you, it works. it's exactly what I want!
However, I found that I have to lock measure Frequency too, otherwise the result will be weird.
I tried a similar way, but cannot, could you help me again? (  ̄十 ̄)

Frequency = DISTINCTCOUNT('Table'[Date])

 Thanks so much

Hi @Anonymous ,

 

Please try the following formula:

 

 

Measure = CALCULATE ( [Measure_Rank], REMOVEFILTERS ( 'Table'[Pcode] ) )

 

vkkfmsft_0-1646799105067.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.