- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

RANKX Totals by category
Hello!, this is my first question for the PBI Community, I have tried many solutions posted in here but for some reason, none of them seems to work in my case, thanks in advance.
I need to have a calculated column that ranks de "Shipping_Line" by "Container_Volume" in order to add this as a filter so the DONUT CHART and table only shows the top 10 Shipping Lines for each Business_Unit.
Table name: Vol_TEUS
Data:
Bussines_Unit | Shipping_Line | Movement_Type | Container_Volume |
Company1 | MSK | Load | 21,337 |
Company1 | MSK | Load | 19,601 |
Company1 | MSK | Unload | 19,505 |
Company1 | MSK | Unload | 18,998 |
Company1 | MSK | Load | 17,978 |
Company1 | MSK | Unload | 16,909 |
Company1 | MSK | Unload | 16,871 |
Company1 | MSK | Unload | 16,829 |
Company1 | MSK | Load | 16,532 |
Company1 | MSK | Unload | 16,471 |
Company1 | MSK | Transhipment | 16,331 |
Company1 | MSK | Unload | 16,302 |
Company2 | APL | Unload | 16,255 |
Company2 | APL | Load | 15,952 |
Company2 | MSC | Load | 15,767 |
Company3 | APL | Load | 14,268 |
Company3 | APL | Unload | 14,253 |
Company3 | HLC | Load | 14,068 |
These are the formulas I have tried with no success:
RANKX(ALLEXCEPT(Vol_TEUS,Vol_TEUS[Shipping_Line]),CALCULATE(SUM(Vol_TEUS[Container_Volume])),,DESC,Dense)
RANKX(FILTER(Vol_TEUS,Vol_TEUS[Shipping_Line] = EARLIER(Vol_TEUS[Shipping_Line])),Vol_TEUS[Container_Volume],,ASC,Dense)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi,
You may download my PBI file from here.
Hope this helps.
Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
For the data that you have shared, show the expected result in a simple Table. From there, we can always build a pie chart.
Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@amitchandak Thank you, i have actually solved the "making a rank" issue.
@Ashish_Mathur Thank you!, find the example data below:
Actual Result Using = (RANKX(FILTER(Vol_TEUS,Vol_TEUS[Shipping_Line]=EARLIER(Vol_TEUS[Shipping_Line])),[Container_Volume],,ASC,Dense))
Desired Result = Rank by Container_Volume per Business_Unit
Bussines_Unit | Shipping_Line | Container_Volume | Actual Result | Desired Result |
Company2 | MSC | 5,874 | 1 | 1 |
Company2 | COSCO | 5,904 | 2 | 2 |
Company2 | ABC | 5,912 | 3 | 3 |
Company2 | HSD | 5,920 | 4 | 4 |
Company2 | EGR | 5,925 | 5 | 5 |
Company2 | AHN | 6,022 | 6 | 6 |
Company2 | HJN | 6,072 | 7 | 7 |
Company2 | IUP | 6,156 | 8 | 8 |
Company2 | ONE | 6,168 | 9 | 9 |
Company2 | MSK | 6,261 | 10 | 10 |
Company3 | ONE | 7,663 | 11 | 1 |
Company3 | HSD | 7,786 | 12 | 2 |
Company3 | MSC | 7,881 | 13 | 3 |
Company3 | ABC | 7,914 | 14 | 4 |
Company3 | EGR | 8,215 | 15 | 5 |
Company3 | AHN | 8,225 | 16 | 6 |
Company3 | HJN | 8,313 | 17 | 7 |
Company3 | IUP | 8,370 | 18 | 8 |
Company3 | MSK | 8,410 | 19 | 9 |
Company3 | COSCO | 8,459 | 20 | 10 |
Company1 | COSCO | 12,037 | 21 | 1 |
Company1 | MSC | 12,085 | 22 | 2 |
Company1 | ABC | 12,098 | 23 | 3 |
Company1 | HSD | 12,704 | 24 | 4 |
Company1 | EGR | 12,893 | 25 | 5 |
Company1 | AHN | 13,010 | 26 | 6 |
Company1 | HJN | 13,376 | 27 | 7 |
Company1 | IUP | 13,624 | 28 | 8 |
Company1 | ONE | 14,045 | 29 | 9 |
Company1 | MSK | 14,068 | 30 | 10 |
I'd like to add that calculated column to the "page filters" in order to selec only the TOP 10 or TOP 5, which are different for each Business Unit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi,
You may download my PBI file from here.
Hope this helps.
Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

You are welcome.
Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Anonymous
Try like
RANKX(ALL(Vol_TEUS,Vol_TEUS[Shipping_Line]),CALCULATE(SUM(Vol_TEUS[Container_Volume])),,DESC,Dense)
The best you refer to the first link. It has been explained in details
For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns
https://radacad.com/how-to-use-rankx-in-dax-part-3-of-3-the-finale
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do you want the total container volume for each shipping line ? and then the top 10 totals ?
Did this post answer your question? Mark it as a solution so others can find it!
Help when you know. Ask when you don't!
Join the conversation at We Talk BI find out more about me at Slow BI
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes!
But the top 10 is different for each Business Unit.
Example: I have a "Chiclet slicer" visualization with the name of the companies, and I would like that to sync and show the top 10 per each company.
I already have this measure:
Container_Volume total for Shpping Line =
CALCULATE(
SUM('Vol_TEUS'[Container_Volume]),
ALLSELECTED('Vol_TEUS'[Shipping Line])
)

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
12-13-2024 03:17 PM | |||
09-12-2024 06:50 AM | |||
10-23-2024 10:35 AM | |||
04-18-2023 06:12 AM | |||
03-30-2020 01:55 PM |
User | Count |
---|---|
136 | |
107 | |
88 | |
58 | |
46 |