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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

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.


Click here to visit my LinkedIn page

View solution in original post

6 REPLIES 6
Tahreem24
Super User
Super User

@Anonymous  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.


Click here to visit my LinkedIn page

Anonymous
Not applicable

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.


Click here to visit my LinkedIn page

Anonymous
Not applicable

@Jihwan_Kim  Thanks a lot

amitchandak
Super User
Super User

@Anonymous , Join sales with product table

 

then you can show

max(Sales[sales])

 

 

or

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.