Reply
jmarcrum
Helper II
Helper II
Partially syndicated - Outbound

SUM of MAX values in a table

Hi all - I'm trying to reproduce an LOD expression (from Tableau) in Power BI. 

{ FIXED [Schedule Period], [Schedule Query], [Site] : MAX( [NAH] ) }

 

NAH is the difference between two other columns.

 

What is the easiest way to do this in Power BI?

 

4.png

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

Syndicated - Outbound

Hi @jmarcrum 

 

A measure like this should give the same result for that particular visual:

Max NAH Measure = 
SUMX ( 
    SUMMARIZE (
        YourTable,
        YourTable[Site],
        YourTable[Schedule Period],
        YourTable[Schedule Query]
    ),
    CALCULATE ( MAX ( YourTable[NAH] ) )
)

Here I've used SUMMARIZE to return a table with the required granularity, and then used SUMX over this table to sum the max values.

 

To exactly replicate the behaviour of the FIXED LOD (which would ignore filters aside from Site, Schedule Period and Schedule Query) you could also write:

Max NAH Measure = 
SUMX ( 
    SUMMARIZE (
        YourTable,
        YourTable[Site],
        YourTable[Schedule Period],
        YourTable[Schedule Query]
    ),
    CALCULATE (
        MAX ( YourTable[NAH] ),
        ALLEXCEPT (
            YourTable,
            YourTable[Site],
            YourTable[Schedule Period],
            YourTable[Schedule Query]
        )
    )
)

 

Hopefully that's of some use.

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

1 REPLY 1
OwenAuger
Super User
Super User

Syndicated - Outbound

Hi @jmarcrum 

 

A measure like this should give the same result for that particular visual:

Max NAH Measure = 
SUMX ( 
    SUMMARIZE (
        YourTable,
        YourTable[Site],
        YourTable[Schedule Period],
        YourTable[Schedule Query]
    ),
    CALCULATE ( MAX ( YourTable[NAH] ) )
)

Here I've used SUMMARIZE to return a table with the required granularity, and then used SUMX over this table to sum the max values.

 

To exactly replicate the behaviour of the FIXED LOD (which would ignore filters aside from Site, Schedule Period and Schedule Query) you could also write:

Max NAH Measure = 
SUMX ( 
    SUMMARIZE (
        YourTable,
        YourTable[Site],
        YourTable[Schedule Period],
        YourTable[Schedule Query]
    ),
    CALCULATE (
        MAX ( YourTable[NAH] ),
        ALLEXCEPT (
            YourTable,
            YourTable[Site],
            YourTable[Schedule Period],
            YourTable[Schedule Query]
        )
    )
)

 

Hopefully that's of some use.

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn
avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)