Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Consider a function to construct and compute ranks based on the RANKX function.
Consider our data model
Table Orders
We will rank the products by the Total and Self-Cost fields.
Let's build a summary table, which we get from the Orders table using the SUMMARIZE function and sort by descending ProductTotal field
Create ranks on the Orders table. The ranks will be created relative to the products in the Total column. Simply put, we need to arrange the products in descending order of their sales amounts. Go to the Report tab, create a measure using the RANKX function and create a summary table
Our ranks should be ranked according to the sales amounts spread across each product, but we see that the measure didn't work as it should - rank 1 is returned everywhere. The point is that when DAX calculated this cell, it first evaluated the entire filter context, and the product context is filtered by Product4 for the top row, etc.
To fix the error, we need to remove the previous filters. Here we introduce ALLSELECTED and CALCULATE functions for the Products table, since the Name field is taken from it
Let's try to build ranks not by the sum by products, but by the number of orders. Let's display the table with the number of orders by products
To change the rank calculation, you need to change the table code to return unique rows for each product rather than rows for each order.
Taking a closer look at the table we can see that the ranks for the individual products are the same. In order to correct the situation we can use the fifth parameter of the RANKX function
Let's complicate our example and calculate Profit in this expression instead of Total. Let's create ranks by products with respect to profit. To calculate the profit, we need to enter the SUMX function.
Profit is calculated through the calculated column
Let's build another table by product category
We have considered the construction of ranks in terms of measures. Let's consider the construction of ranks in computable tables.
There is no external custom filter context in the tables. The external custom filter context does not affect the tables of the stored data model in any way. Therefore, the formula will be slightly different.
Create a new column to calculate ranks relative to the Total column and write the RANKX function.
The Profit field is calculated through the difference of ProductTotal and Self-Cost
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.