This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
I would like to know if it is possible to do in the same matrix what I show in the image. It is about calculating the differences between two years for different metrics, and always putting the difference between the years.
| Sales | Unit | |
| 2019 | 20 | 5 |
| 2020 | 30 | 7 |
| Difference | 10 | 2 |
The only solution I found was this one, but, maybe there is a better one.
salesDifference =
VAR _year =
SWITCH (
TRUE (),
SELECTEDVALUE ( dim_date[year] ) <> 0, "year",
BLANK ()
)
RETURN
IF ( _year = "", [salesDiff], [sales] )
----
WHERE [salesDiff] IS
salesDiff =
VAR _minsales =
CALCULATE( SUM ( fac_sales[sales] ), Filter(dim_date, dim_date[year] = Min( dim_date[year] ) ) )
VAR _maxsales = IF (
CALCULATE( SUM ( fac_sales[sales] ), Filter(dim_date, dim_date[year] = Max( dim_date[year] ) ) )
RETURN
_maxsales - _minsales
Thanks
Solved! Go to Solution.
@bestevezdyb , On of this way is use isinscope or isfiltered and move this diff to grand total
new sales = if(isinscope(Date[Year]), [sale], [diff])
or something like this
https://community.powerbi.com/t5/Desktop/Grand-Total-in-Bar-Chart/m-p/612631
Power BI — Year on Year with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a
https://www.youtube.com/watch?v=km41KfM_0uA
@bestevezdyb , On of this way is use isinscope or isfiltered and move this diff to grand total
new sales = if(isinscope(Date[Year]), [sale], [diff])
or something like this
https://community.powerbi.com/t5/Desktop/Grand-Total-in-Bar-Chart/m-p/612631
Power BI — Year on Year with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a
https://www.youtube.com/watch?v=km41KfM_0uA
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 25 | |
| 21 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 62 | |
| 34 | |
| 33 | |
| 25 | |
| 24 |