March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
So I have the following calcluation to rank items that are sold by the invoicved amount and it works fine.
Product Running Total =
RANKX(
ALL(Sheet1[Item]),
[Total Inv Amount],,
DESC,
Dense
)
I have added more data to my report and created a second version:
Sales Ranking = RANKX(
AlL('Ames Sales'[Material]),
[Invoiced Sales],,
DESC,
Dense
)
This uses a different table which i have refernced and rather than getting ranks of 1,2,3,4 etc, every row evaluates to 1.
Any thoughts as to why this may be happening please?
Thanks
Solved! Go to Solution.
@bptyates , if you add any other column in visual, other than one you selected in rank, the rank will inside that one
You are using 'Ames Sales'[Material] and you add 'Ames Sales'[Material ID] , then you rank will inside 'Ames Sales'[Material ID], all 1 . Only 1 material inside id
there we add both column, in rank all . or use table
example
Sales Ranking = RANKX(
AlL('Ames Sales'[Material], 'Ames Sales'[Material ID]),
[Invoiced Sales],,
DESC,
Dense
)
or
Sales Ranking = RANKX(
AlL('Ames Sales'),
[Invoiced Sales],,
DESC,
Dense
)
Also, check
Power BI Rank Across dimension tables: https://youtu.be/X59qp5gfQoA
@bptyates , if you add any other column in visual, other than one you selected in rank, the rank will inside that one
You are using 'Ames Sales'[Material] and you add 'Ames Sales'[Material ID] , then you rank will inside 'Ames Sales'[Material ID], all 1 . Only 1 material inside id
there we add both column, in rank all . or use table
example
Sales Ranking = RANKX(
AlL('Ames Sales'[Material], 'Ames Sales'[Material ID]),
[Invoiced Sales],,
DESC,
Dense
)
or
Sales Ranking = RANKX(
AlL('Ames Sales'),
[Invoiced Sales],,
DESC,
Dense
)
Also, check
Power BI Rank Across dimension tables: https://youtu.be/X59qp5gfQoA
Sorry, im not sure I understand, I dont have 'Ames Sales'[Material ID] in my data.
But the second option worked - thank you.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
86 | |
77 | |
57 | |
52 |
User | Count |
---|---|
201 | |
137 | |
108 | |
73 | |
68 |