Top 5 Customer in Power BI

TG2812

Board Regular
Joined
Apr 15, 2015
Messages
180
Hi fellows!

Background:
  • I'm trying to do a dynamic top 5 customer based on the quantity of sales they've made.
  • I created a measure Total_Sales using the "Qty" column of table "Sales".
  • Important: the measure Total Sales will be part of the table "Sales". The argument "Sales[Total_Sales] does not even pop up from the drop down suggestion list.

Problem:
When I'm typing the DAX formula "Rank = RANKX(ALL(Sales[Customer name],Sales[Total_Sales],DESC))", it does not return anything.

Any idea what I'm doing wrong?

Thank you in advance for looking at my case.
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Code:
[COLOR=#000000][FONT=Consolas]Rank = RANKX(ALL(Sales[Customer name]),
SUM(Sales[Total_Sales]),DESC)[/FONT][/COLOR]
 
Upvote 0

Forum statistics

Threads
1,214,617
Messages
6,120,541
Members
448,970
Latest member
kennimack

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top