Forum Discussion
Row into column / filtering column
Hello, I'm trying to filter my table with DAX. My data looks like the following:
| Name | Type | Value |
| Person 1 | Height | 187 cm |
| Person 1 | Weight | 76 kg |
| Person 2 | Height | 165 cm |
| Person 2 | Weight | 63 kg |
And I would like to become the following:
| Name | Weight | Height |
| Person 1 | 187 cm | 76 kg |
| Person 2 | 165 cm | 63 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
- parry2kSuper User
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.
- AnonymousNot 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!