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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Take the max value based on a condition from another column

Days Since Install Score = DIVIDE('Failure Table'[Days Since Installation], MAX('Failure Table'[Days Since Installation]))
 
I want to use the equation shown above as a column in my table 'Failure Table', but modify it to only take the max of the [Days Since Installation] where 'Failure Table'[Install Day].[Year]<>1950. I tried doing:
Days Since Install Score = DIVIDE('Failure Table'[Days Since Installation], Calculate(MAX('Failure Table'[Days Since Installation]),'Failure Table'[Install Day].[Year]<>1950))
However, this resulted in all cells = 1, just dividing the cell by itself rather than the max value of the column where year doesn't equal 1950.
How can I solve this problem? Thanks in advance.
1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Days Since Install Score =
DIVIDE (
    'Failure Table'[Days Since Installation],
    CALCULATE (
        MAX ( 'Failure Table'[Days Since Installation] ),
        REMOVEFILTERS ( 'Failure Table' ),
        'Failure Table'[Install Day].[Year] <> 1950
    )
)

View solution in original post

1 REPLY 1
johnt75
Super User
Super User

Days Since Install Score =
DIVIDE (
    'Failure Table'[Days Since Installation],
    CALCULATE (
        MAX ( 'Failure Table'[Days Since Installation] ),
        REMOVEFILTERS ( 'Failure Table' ),
        'Failure Table'[Install Day].[Year] <> 1950
    )
)

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.