Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Required hel pin difference calculation in Matrix

LOB20192020difference
asd20433 
add332332 
ass32112 
wer3334 

 

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

  • 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] ) - __prevYearSales
    

    I 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.

  • V-lianl-msft's avatar
    V-lianl-msft
    Community 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.