Forum Discussion
Product Ranking - Override Permissions/Filters
- 3 years ago
Hello Anonymous,
1. Create a measure that calculates the total quantity without considering any filters applied to the 'Dim Customer' table.
Total Qty (All Customers) = CALCULATE([Total Qty], ALL('Dim Customer'))2. Create a new measure using the RANKX function to calculate the overall company product ranking based on the 'Total Qty (All Customers)' measure.
Rank Qty (Overall) = RANKX(ALL('Dim ITEM'), [Total Qty (All Customers)])3. Use the 'Rank Qty (Overall)' measure in your visual to display the overall company product ranking. Do not hesitate to let me know if you might need further assistance.
Hello Anonymous,
1. Create a measure that calculates the total quantity without considering any filters applied to the 'Dim Customer' table.
Total Qty (All Customers) = CALCULATE([Total Qty], ALL('Dim Customer'))2. Create a new measure using the RANKX function to calculate the overall company product ranking based on the 'Total Qty (All Customers)' measure.
Rank Qty (Overall) = RANKX(ALL('Dim ITEM'), [Total Qty (All Customers)])3. Use the 'Rank Qty (Overall)' measure in your visual to display the overall company product ranking. Do not hesitate to let me know if you might need further assistance.
Sahir_Maharaj It worked!! Thank you so much!!