Forum Discussion
Required hel pin difference calculation in Matrix
| LOB | 2019 | 2020 | difference |
| asd | 20 | 433 | |
| add | 332 | 332 | |
| ass | 321 | 12 | |
| wer | 33 | 34 |
This is Matrix. I have columns: LOB ,Year ( values are 2019 and 2020) and Cost. I need a difference between the cost for 2019 and 2020 in the difference column.
Hi Anonymous ,
Try pivoting the year column in the query editor.
Create a measure and apply in table visual.
Difference = MAX('Table'[2020])-MAX('Table'[2019])Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
4 Replies
- parry2kSuper User
Anonymous not sure how your data looks like, you can try something like this
Difference = VAR __prevYear = MAX ( Table[Year] ) - 1 VAR __prevYearSales = CALCULATE ( SUM ( Table[Sales] ), Table[Year] = __prevYear ) RETURN SUM ( Table[Sales] ) - __prevYearSalesI would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
- AnonymousNot applicable
not getting the desired output.
- parry2kSuper User
Anonymous your reply is not very helpful. if you need help, you have to provide more details. Read this post to get your answer quickly.
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
- V-lianl-msftCommunity Support
Hi Anonymous ,
Try pivoting the year column in the query editor.
Create a measure and apply in table visual.
Difference = MAX('Table'[2020])-MAX('Table'[2019])Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.