Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap

Reply
Anonymous
Not applicable

Top 10%; 10%-20%; 20-50%

Hi, 

 

It should be really easy, but, well.... .

 

I have column: [Sales Gross]: I need to create column [TABC], where it will:

 

Calculate the percentage of total sum, and 

  • If the sales gross belongs to top 10% of sum, it will return "T"
  • If the sales gross belongs to 10% - 20% of sum, it will return "A"
  • If the sales gross belongs to 20% - 50% of sum, it will return "B"

 

Sales Gross
542,45
47,50
576,06
951,13
848,45
405,26
667,73
181,38
259,38
541,16
214,74
58,58
240,99
353,98
65,46
489,49
500,87
20,84
883,75
804,75
918,40
120,83
611,12
735,90
768,23
726,31
241,83

 

Please advise. 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Picture2.png

 

TABC CC =
VAR _ranking =
RANKX ( Data, Data[Sales Gross],, DESC )
VAR _totalcount =
COUNTROWS ( Data )
VAR _rankpercentage =
DIVIDE ( _ranking, _totalcount )
RETURN
SWITCH (
TRUE (),
_rankpercentage <= 0.1, "T",
_rankpercentage <= 0.2, "A",
_rankpercentage <= 0.5, "B",
"C"
)
 
 
 
 


Microsoft MVP



If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule a short Teams meeting to discuss your question





View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Jihwan_Kim
Super User
Super User

Picture2.png

 

TABC CC =
VAR _ranking =
RANKX ( Data, Data[Sales Gross],, DESC )
VAR _totalcount =
COUNTROWS ( Data )
VAR _rankpercentage =
DIVIDE ( _ranking, _totalcount )
RETURN
SWITCH (
TRUE (),
_rankpercentage <= 0.1, "T",
_rankpercentage <= 0.2, "A",
_rankpercentage <= 0.5, "B",
"C"
)
 
 
 
 


Microsoft MVP



If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule a short Teams meeting to discuss your question





Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

May 2025 Monthly Update

Fabric Community Update - May 2025

Find out what's new and trending in the Fabric community.