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
dorayeh161923
Frequent Visitor

Max value by group

Hi there,

 

I have three table,

dorayeh161923_0-1647417111944.pngdorayeh161923_2-1647417164582.pngdorayeh161923_3-1647417203180.png

 

Group,Product,Sales

And I want to creat a new measure to show the max value for sales by groupname.

How to do this ? Please help me.

 

BRs

Dora.

 

 

 

 

 

1 ACCEPTED SOLUTION

Hi,

thank you for your explanation, and please check the below picture and the attached pbix file.

The new measure has to be written like below, and then you can select this measure as a "Field Value" inside the Conditional Formatting -> Background color option.

 

Picture1.png

 

Max sales value by groupname color format: = 
VAR maxsales =
    CALCULATE ( MAX ( Sales[Sales] ), ALLEXCEPT ( Sales, 'Group'[GroupName] ) )
RETURN
    IF ( SUM ( Sales[Sales] ) = maxsales, "Red" )

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.


Go to My LinkedIn Page


View solution in original post

6 REPLIES 6
Tahreem24
Super User
Super User

@dorayeh161923  Find the attached PBIX file for your reference. Refer the Relationship tab for joining between tables. then simply take sales and GroupName into simple table or visual.

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

 

It is for creating a new measure.

 

Picture1.png

 

Max sales value by groupname: =
SUMX ( VALUES ( 'Group'[GroupName] ), CALCULATE ( MAX ( Sales[Sales] ) ) )

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.


Go to My LinkedIn Page


Hi @Jihwan_Kim ,

Sorry I told not so clear,

My final purpose is to do like this.

The max turn background color in the same groupname.

How to do this? Thanks a lot.

dorayeh161923_1-1647423504355.png

 

 

BRs 

Dora.

 

Hi,

thank you for your explanation, and please check the below picture and the attached pbix file.

The new measure has to be written like below, and then you can select this measure as a "Field Value" inside the Conditional Formatting -> Background color option.

 

Picture1.png

 

Max sales value by groupname color format: = 
VAR maxsales =
    CALCULATE ( MAX ( Sales[Sales] ), ALLEXCEPT ( Sales, 'Group'[GroupName] ) )
RETURN
    IF ( SUM ( Sales[Sales] ) = maxsales, "Red" )

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.


Go to My LinkedIn Page


@Jihwan_Kim  Thanks a lot

amitchandak
Super User
Super User

@dorayeh161923 , Join sales with product table

 

then you can show

max(Sales[sales])

 

 

or

maxx(values(Product[Group Name]) , calculate(sum(sales[sales])))

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.