Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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?
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |