Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Good afternoon. I am working on a measure that shows a Top N and Others category in a matrix. Currenty it shows the top 5 countries per Year based on Sales.
I now want my matrix to simply show the Top 5 countries with the highest total sales sum independent of year.
For example.
- In 2021 China, UK, Germany, Denmark, and Netherlands had the most sales.
- In 2022 China, UK, Germany, Netherlands , and Taiwan had the most sales.
- Over all years combined, UK, USA, Netherlands, Germany, and France had the highest sales.
Now I only want to see the countries with the highest sales over all years (including others category) in my matrix. How can I achieve this? I am now using the measure below:
Ranking =
VAR Ranking =
RANKX(ALLSELECTED('Country names'[Country Name]),
[Gigawatt]
)
VAR isOtherSelected = SELECTEDVALUE('Country names'[Country Name]) ="Others"
VAR Result = if(isOtherSelected,-1,Ranking)
Return
Result
Solved! Go to Solution.
If you want to disregard time completely in your calculations of ranks, then it's as easy as:
[Ranking w/o Time] =
CALCULATE(
[Ranking],
REMOVEFILTERS( Dates )
)
If you want to disregard time completely in your calculations of ranks, then it's as easy as:
[Ranking w/o Time] =
CALCULATE(
[Ranking],
REMOVEFILTERS( Dates )
)
Thank you very much. Worked perfectly. Will accept this as the solution!
Is it not enough to remove the years from the matrix? Just create another matrix and don't slice by years.
I'm first trying to get it to work in a matrix because I later on want to use it as a dynamic legend of a stacked bar chart. So unfortunately that is not an option.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
21 | |
20 | |
19 | |
13 | |
12 |
User | Count |
---|---|
42 | |
27 | |
23 | |
22 | |
22 |