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
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
14 | |
11 | |
8 | |
5 |
User | Count |
---|---|
28 | |
21 | |
20 | |
13 | |
10 |