Forum Discussion
How do i visualize this data?
- Anonymous7 years ago
VitoMas - Try the following:
1. In Power Query, you will want to select the Question column, and then Unpivot Other Columns. That will transform your table into 3 rows: Question, Attribute (Student), and Value (Answer).
2. You can change the names of the columns to Question, Student and Answer.
3. Create a DAX Measure:
Answer Count = COUNTROWS([Your Table])
4. Create a Clustered Column Chart with your new measure as Value, Answer as Legend, and Question as Axis.
Hope this helps,
Nathan
VitoMas - Try the following:
1. In Power Query, you will want to select the Question column, and then Unpivot Other Columns. That will transform your table into 3 rows: Question, Attribute (Student), and Value (Answer).
2. You can change the names of the columns to Question, Student and Answer.
3. Create a DAX Measure:
Answer Count = COUNTROWS([Your Table])
4. Create a Clustered Column Chart with your new measure as Value, Answer as Legend, and Question as Axis.
Hope this helps,
Nathan