- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
04-06-2024 10:39 AM | |||
Anonymous
| 10-12-2022 02:33 PM | ||
Anonymous
| 08-16-2022 07:42 AM | ||
08-14-2023 06:17 AM | |||
03-02-2024 06:25 AM |
User | Count |
---|---|
140 | |
110 | |
81 | |
60 | |
46 |