Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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:
User | Count |
---|---|
20 | |
14 | |
11 | |
8 | |
6 |
User | Count |
---|---|
23 | |
23 | |
20 | |
15 | |
10 |