Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Row into column / filtering column

Hello, I'm trying to filter my table with DAX. My data looks like the following:

 

NameTypeValue
Person 1Height187 cm
Person 1Weight76 kg
Person 2Height165 cm
Person 2Weight63 kg

 

And I would like to become the following:

 

NameWeightHeight
Person 1187 cm76 kg
Person 2165 cm63 kg

 

Any suggestions?

 

Thanks!

 

  • Anonymous use matrix visual:

     

    Name on rows

    Type on columns

    Value on Values and aggregation should be min or max

     

    Follow us on LinkedIn and  to our YouTube channel

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make effort to give Kudos to 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.

     

2 Replies

  • Anonymous use matrix visual:

     

    Name on rows

    Type on columns

    Value on Values and aggregation should be min or max

     

    Follow us on LinkedIn and  to our YouTube channel

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make effort to give Kudos to 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.

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      Thanks, this is working. But now I would like to add other columns to this matrix visual (calculations) but since these columns are not real columns of my dataset, I cannot use them in an IF statement. Any idea how I could, for example, add a column that calculates whether a person is overweight based on weight? Thanks for helping me out!