Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
hi,
I want to create a calculation on top of a LOD expression similar to this.
MAXSALES = {Fixed Country : MAX(SALES)} which im doing by
MAXSALES = CALCULATE(MAX('Table1''Sales'),ALLEXCEPT('Table1',Table1[country]))
I want to SUM(MAXSALES) and use it in another calculation to achieve sum(individual sales) / SUM(MAXSALES)
Can someone please help.
Thanks in Advance.
Solved! Go to Solution.
Hi @mikey268 ,
Try this:
Hi @mikey268 ,
You can use CALCULATE(MAX('Table1''Sales'),ALL('Table1')), it will get the max value for this table.
Howerver, it's better if you provide a sample data. So we can check it better.
Ricardo
Hi here is the context.
I want to write this in power bi:
SUM({FIXED DIM1, DIM2 : MAX(measure)})
Hi @mikey268 ,
I would say you need to aggregate first with summarize and sum them.
Can you give some example about it ?
Hi, thanks for the response. something like this. I would do SUM({FIXED Quarter, Part : MAX(cost)}
| Quarter | Part | Cost |
| 2020Q1 | A | 100 |
| 2020Q1 | A | 100 |
| 2020Q1 | A | 100 |
| 2020Q1 | B | 200 |
| 2020Q1 | B | 200 |
| 2020Q1 | B | 200 |
| 2020Q1 | B | 200 |
| 2020Q1 | C | 300 |
| 2020Q1 | C | 300 |
| 2020Q1 | C | 300 |
| 2020Q2 | A | 200 |
| 2020Q2 | A | 200 |
| 2020Q2 | A | 200 |
| 2020Q2 | B | 100 |
| 2020Q2 | B | 100 |
| 2020Q2 | B | 100 |
| 2020Q2 | C | 400 |
| 2020Q2 | C | 400 |
| 2020Q2 | C | 400 |
Result:
| Result | Part Cost |
| 2020Q1 | 600 |
| 2020Q2 | 700 |
Hi @mikey268 ,
Try this:
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |