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
Ethanhunt123
Helper III
Helper III

Largest amount by person

I have a table that has many columns. (date, User, Amount etc). I need to find the user that has the largest amount regardless of any other column(date, etc).

The output will be GHI and 1000

 

NameAmount
ABC100
DEF200
GHI1000
JKL350
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Ethanhunt123 ,

lastnonblankvalue(Table[Amount], max(Table[Name]))

 

select with un summarized Amount. Else create a Rank and filter on 1 or use top 1

 

sales =sum(Table[Amount])

Rank = RANKX(all(Table[Name]),[Sales])


Rank Top 1= CALCULATE(if([Rank]=,[Sales],BLANK()) ,VALUES(Table[Name]))
Rank Top  1 = sumx(VALUES(Table[Name]),if([Rank]=1,[Sales],BLANK()) )
Top 1 Rank = CALCULATE([Sales],TOPN(1,all(Table[Name]),[Sales],DESC),VALUES(Table[Table]))

 

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
https://community.powerbi.com/t5/Community-Blog/Dynamic-TopN-made-easy-with-What-If-Parameter/ba-p/3...
Rank 2nd top = sumx(filter(VALUES(Geography[City]),[City Rank]=2),[Sales] )

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Ethanhunt123 ,

lastnonblankvalue(Table[Amount], max(Table[Name]))

 

select with un summarized Amount. Else create a Rank and filter on 1 or use top 1

 

sales =sum(Table[Amount])

Rank = RANKX(all(Table[Name]),[Sales])


Rank Top 1= CALCULATE(if([Rank]=,[Sales],BLANK()) ,VALUES(Table[Name]))
Rank Top  1 = sumx(VALUES(Table[Name]),if([Rank]=1,[Sales],BLANK()) )
Top 1 Rank = CALCULATE([Sales],TOPN(1,all(Table[Name]),[Sales],DESC),VALUES(Table[Table]))

 

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
https://community.powerbi.com/t5/Community-Blog/Dynamic-TopN-made-easy-with-What-If-Parameter/ba-p/3...
Rank 2nd top = sumx(filter(VALUES(Geography[City]),[City Rank]=2),[Sales] )

How it will handle the situation when 2 rows have same amount

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