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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
ThisIsVS
Frequent Visitor

Calculate Custom Maximum Value Column

This might be easy.
Let's say I've the following Pivot Table.

ThisIsVS_0-1661005822402.png

What would be the dax expression to create a measure named "Max" so that i would get the following.

 

ThisIsVS_0-1661006508254.png

 

 

i.e If Value in "Sum of Sales Amount" column equals Maximum Value of "Sum of Sales Amount" column, then the value itself, otherwise a blank.

1 ACCEPTED SOLUTION

@ThisIsVS 

You may also try

Amount Max =
VAR MaxAmount =
    MAXX ( ALLSELECTED ( TableName[Year] ), [Sum of Sales Amount] )
RETURN
    IF ( [Sum of Sales Amount] = MaxAmount, MaxAmount )

View solution in original post

5 REPLIES 5
tamerj1
Super User
Super User

Hi @ThisIsVS 

is the Year column from the same table or a date table?

Same table, Sir.

@ThisIsVS 

Please try

Amount Max =
CALCULATE (
    MAXX ( ALLSELECTED ( TableName[Year] ), [Sum of Sales Amount] ),
    KEEPFILTERS ( TableName[Year] )
)

@ThisIsVS 

You may also try

Amount Max =
VAR MaxAmount =
    MAXX ( ALLSELECTED ( TableName[Year] ), [Sum of Sales Amount] )
RETURN
    IF ( [Sum of Sales Amount] = MaxAmount, MaxAmount )

It worked. Thankyou, Sir. 🙂

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.