Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I am using the following measure to rank a store within its region based on its % to goal:
It works correctly without using a slicer(first image), but it shows different results when using a slicer (second image). Any ideas why?
Solved! Go to Solution.
@Anonymous ,
You can try 'ALL' a 'Table' instead of ‘ALL’ a 'Column'.
% to Goal Rank = RANKX ( FILTER ( ALL ( 'Look ups - Store' ), 'Look ups - Store'[Region] = MAX ( 'Look ups - Store'[Region] ) ), [% to Goal] )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous ,
You can try 'ALL' a 'Table' instead of ‘ALL’ a 'Column'.
% to Goal Rank = RANKX ( FILTER ( ALL ( 'Look ups - Store' ), 'Look ups - Store'[Region] = MAX ( 'Look ups - Store'[Region] ) ), [% to Goal] )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous
Hi. what happens if your use ALLSELECTED instead of ALL.
Let me know the result
Regards
Victor