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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Rank to be given

I have this data how can I provide them rank.

 

Store NameSUM(CALLS_SUM)
AD        12,741
ADM       14,507
AE        990
AEDU      201
AEM       4,395
AEMD      2,297
AF        36
AFME      2
AFMO      13
AFMW      9
AG        5
AGM       33
AGMD      23
AIMD      3
AIMF      2
AK        35
AL        82
ALMA      218
ALME      56
ALMV      854
AM        10
AMGG      1
AMGU      2
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Thanks... finally able to figure it myself... used this

 

Rank = rankx(ALLSELECTED(Sheet2[PRICE_NAME]),CALCULATE(sum(Sheet2[SUM(CALLS_SUM)])),,desc,dense)

View solution in original post

2 REPLIES 2
danielkrol
Helper II
Helper II

Wow, Thats a bit descriptive...

Might be something like this?

 

RANK =
VAR _call_sum = Blad1[SUM(CALLS_SUM)]
return
CALCULATE(COUNT(Blad1[Store Name])+1, FILTER(ALL(Blad1), Blad1[SUM(CALLS_SUM)] > _call_sum))
 
Anonymous
Not applicable

Thanks... finally able to figure it myself... used this

 

Rank = rankx(ALLSELECTED(Sheet2[PRICE_NAME]),CALCULATE(sum(Sheet2[SUM(CALLS_SUM)])),,desc,dense)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors