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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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