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 all,
I am trying to display the total as difference. Unfortunatly I do not get it to work on al levels. Anyone knows how to rewrite the DAX formula in order to display difference correctly?
KR,
Lars
Difference =
VAR x =
CALCULATE(
SUM(Sheet1[QTY]),
FILTER(
ALLSELECTED(Sheet1),
Sheet1[PublishDate] < MAX(Sheet1[PublishDate])
)
)
VAR y =
CALCULATE(
SUM(Sheet1[QTY]),
FILTER( ALL(Sheet1), Sheet1[PublishDate] = MAX(Sheet1[PublishDate]) )
)
RETURN
IF(
HASONEFILTER(Sheet1[PublishDate]),
SUM(Sheet1[QTY]),
x-y
)
Solved! Go to Solution.
Hi @Nijlal01
I have a test by your sample and dax code. I find that your use AllSELECTED and ALL function in your X and Y code. Due to you use hierachy level in your Matrix, I think you don't need to use these two function to get data. But you need to use ALL function to get Max Date.
Update Code:
Difference =
VAR _MaxDate =
MAXX ( ALL ( Sheet1 ), Sheet1[PublishDate] )
VAR _x =
CALCULATE (
SUM ( Sheet1[QTY] ),
FILTER ( Sheet1, Sheet1[PublishDate] < _MaxDate )
)
VAR _y =
CALCULATE (
SUM ( Sheet1[QTY] ),
FILTER ( Sheet1, Sheet1[PublishDate] = _MaxDate )
)
RETURN
IF ( HASONEFILTER ( Sheet1[PublishDate] ), SUM ( Sheet1[QTY] ), _x - _y )
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I did try to use the post @Greg_Deckler. Unfortunatly I did not get it to work 😞 There are more post about displaying total as difference however not one which explains how to do it on multiple levels. And I am to newbie to figure it out myself.
@Nijlal01 Can you post your sample data?
Hi @Greg_Deckler ,
Thanks for the help! See data below:
PublishDate | Product | ShipTo | WkNr | QTY |
1-1-2021 | 100001 | A | 1 | 10 |
1-1-2021 | 100001 | B | 1 | 15 |
1-1-2021 | 100001 | B | 2 | 10 |
1-1-2021 | 100002 | A | 1 | 15 |
1-1-2021 | 100002 | A | 2 | 20 |
1-1-2021 | 100002 | B | 2 | 20 |
2-1-2021 | 100001 | A | 1 | 15 |
2-1-2021 | 100001 | A | 1 | 25 |
2-1-2021 | 100001 | B | 2 | 20 |
2-1-2021 | 100002 | B | 2 | 15 |
2-1-2021 | 100002 | A | 2 | 30 |
2-1-2021 | 100002 | A | 1 | 10 |
Hi @Nijlal01
I have a test by your sample and dax code. I find that your use AllSELECTED and ALL function in your X and Y code. Due to you use hierachy level in your Matrix, I think you don't need to use these two function to get data. But you need to use ALL function to get Max Date.
Update Code:
Difference =
VAR _MaxDate =
MAXX ( ALL ( Sheet1 ), Sheet1[PublishDate] )
VAR _x =
CALCULATE (
SUM ( Sheet1[QTY] ),
FILTER ( Sheet1, Sheet1[PublishDate] < _MaxDate )
)
VAR _y =
CALCULATE (
SUM ( Sheet1[QTY] ),
FILTER ( Sheet1, Sheet1[PublishDate] = _MaxDate )
)
RETURN
IF ( HASONEFILTER ( Sheet1[PublishDate] ), SUM ( Sheet1[QTY] ), _x - _y )
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You are a genius! Thanks 😄
@Nijlal01 See if MM3TR&R helps: Matrix Measure Total Triple Threat Rock & Roll - Microsoft Power BI Community
Ouch, it breaks my head but I will try if I can make it work using that post
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
8 | |
3 | |
3 | |
2 | |
2 |