cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Akbarov
Helper I
Helper I

Visualization to show Max value + category name

Hello Dear community,

 

Can anyone help me to with DAX measure which will return Max value from difference % column & it's category name.

And which visualization can I use which will show both?

 

In following example I want visualization to show : [Personal Service 166] or [Personal Service 437%]

 

Thank you. 

2022-05-23.png

2 ACCEPTED SOLUTIONS
dhruvinushah
Responsive Resident
Responsive Resident

Hi @Akbarov , 
You can use a Card Visual to show your requirement. 
I tested the steps below out in the Contoso Sample Power BI dataset on my machine.  They got me this result: 

dhruvinushah_2-1653266064449.png

 


1. Create a measure which would go something like this: 

Measure For Card Visual = 
VAR ABC = SUM(TableName[%DifferenceFromAmountField])

VAR BCD = MAXX(SUMMARIZE(TableName, CategoryName), ABC)

RETURN 
BCD

 

2. Add a card visual. Add the above created measure into the card visual. 

3. Go into the format settings of the Card Visual -> NAvigate to "General" -> Switch On Title settings -> Click the Fx button next to title heading (refer screenshot below): 

dhruvinushah_0-1653265856675.png

4. Now choose the Category field as in the Fx conditional formatting field. 

dhruvinushah_1-1653265922227.png


5. Click Ok.

Your card will show you the MAX Value of your field and the title will show the category that the MAX value belongs to. 

Hope this helps. Please give a thumbs up if it does 🙂

Also, to understand the idea behind the calculation you can refer to this video -
https://youtu.be/UJPBeiGBEg4

 









View solution in original post

Ashish_Mathur
Super User
Super User

Hi,

Trythese measures

Max difference %  = MAXX(all(data[category]),[difference %])

Category of max difference % = FIRSTNONBLANK(TOPN(1,VALUES(Products[Category]),[difference %]),1)

Drag both measures to a multi card visual.  If these measures do not work, then share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

3 REPLIES 3
Akbarov
Helper I
Helper I

Thanks both for answers,  my values ( % ) mostly negative values, I used ABS() now results are correct.

Ashish_Mathur
Super User
Super User

Hi,

Trythese measures

Max difference %  = MAXX(all(data[category]),[difference %])

Category of max difference % = FIRSTNONBLANK(TOPN(1,VALUES(Products[Category]),[difference %]),1)

Drag both measures to a multi card visual.  If these measures do not work, then share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
dhruvinushah
Responsive Resident
Responsive Resident

Hi @Akbarov , 
You can use a Card Visual to show your requirement. 
I tested the steps below out in the Contoso Sample Power BI dataset on my machine.  They got me this result: 

dhruvinushah_2-1653266064449.png

 


1. Create a measure which would go something like this: 

Measure For Card Visual = 
VAR ABC = SUM(TableName[%DifferenceFromAmountField])

VAR BCD = MAXX(SUMMARIZE(TableName, CategoryName), ABC)

RETURN 
BCD

 

2. Add a card visual. Add the above created measure into the card visual. 

3. Go into the format settings of the Card Visual -> NAvigate to "General" -> Switch On Title settings -> Click the Fx button next to title heading (refer screenshot below): 

dhruvinushah_0-1653265856675.png

4. Now choose the Category field as in the Fx conditional formatting field. 

dhruvinushah_1-1653265922227.png


5. Click Ok.

Your card will show you the MAX Value of your field and the title will show the category that the MAX value belongs to. 

Hope this helps. Please give a thumbs up if it does 🙂

Also, to understand the idea behind the calculation you can refer to this video -
https://youtu.be/UJPBeiGBEg4

 









Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors