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.
Hi everyone,
I need to rank the Sales of the Employees, but I have a table and a new column called Test created as a variable in th DAX. This is to improve the performance. I have tried it without and it is taking too long to load, so this is my only solution. The loading time is no problem anymore but now I dont know how to iterate through the new column Test to get the ranking right. I need to use that column (which is a replication of the column Sales) because the column Sales is based on a lot of measures, which is the reason why it takes so long to load.
The query is executing but the rankings come out all as 1. It must be due to the SUMX() that just compares every row with itself. How can I fix this?
Your help is gretaly apreciated.
hi, @f_r_1998
try below
Measure =
VAR table_ =
ADDCOLUMNS (
SUMMARIZE (
'TableEmployee',
'TableEmployee'[Employee],
"Sales", 'TableSales'[Sales]
),
"Test", [Sales]
)
RETURN
RANKX(table_ ,[test],,ASC,Dense)
or
measure =
rank(
crossjoin(
all('TableEmployee'[Employee]),
all('TableSales'[Sales])
),
orderby([sales],asc)
)
Hi! Thanks for your reply! The first option is not working because the newly created column and table cannot go just like this in the Rankx. That is why I usd SUMX() but I only get 1s for every row. And the second option is not working either, and also referring to the measure Sales, which is wanted to avoid. Do you have any other suggestions?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
18 | |
15 | |
11 | |
11 | |
8 |
User | Count |
---|---|
24 | |
18 | |
12 | |
11 | |
10 |