March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
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
Solved! Go to Solution.
Hi @Anonymous ,
Please try the following formula:
Measure = CALCULATE ( [Measure_Rank], REMOVEFILTERS ( 'Table'[Pcode] ) )
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.
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.
@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] ) )
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |