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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! 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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.