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

Using DAX to filter a person with MAX money?

Hi, 

 

I want to create a tooltip that shows a person with the most money: 

 

Bananas

Erik13$
BananasAdam15$
BananasJosh11$
ApplesErik9$
ApplesAdam3$

 

The tooltip should show the following:

  • after hovering over Bananas the name Adam (15$) would be shown
  • after hovering over Apples the name Erik (9$)

 

I imagine it has to do something with MAX function, any ideas on how to achieve this? 

 

1 ACCEPTED SOLUTION
FrankAT
Community Champion
Community Champion

Hi @Anonymous ,

give this a try:

 

23-07-_2021_00-00-53.png

 

Max Amount =
VAR _Table =
    FILTER (
        ALLEXCEPT ( 'Table', 'Table'[Fruit] ),
        'Table'[Amount] = MAX ( 'Table'[Amount] )
    )
RETURN
    MAXX ( _Table, 'Table'[Name] ) & " ("
        & MAXX ( _Table, 'Table'[Amount] ) & "$ )"

With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)

View solution in original post

1 REPLY 1
FrankAT
Community Champion
Community Champion

Hi @Anonymous ,

give this a try:

 

23-07-_2021_00-00-53.png

 

Max Amount =
VAR _Table =
    FILTER (
        ALLEXCEPT ( 'Table', 'Table'[Fruit] ),
        'Table'[Amount] = MAX ( 'Table'[Amount] )
    )
RETURN
    MAXX ( _Table, 'Table'[Name] ) & " ("
        & MAXX ( _Table, 'Table'[Amount] ) & "$ )"

With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)

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.