Forum Discussion
mterry
1 year agoHelper V
Merging rows and using row values as both column headers and row values
I have a table that has a column filled with questions, and another column with applicable respoonses to those questions. I'm hoping I can transform this table using Power Query so that each question...
- 1 year ago
Just Pivot with no aggregation
Table.Pivot(#"Previous Step", List.Distinct(#"Changed Type"[Question]), "Question", "Response")
Akash_Varuna
1 year agoSuper User
Hi mterry , Could you please try this
- Select "Company" as the grouping column, "Question" as the column to pivot, and "Response" as the values.
- Go to the "Transform" tab and click "Pivot Column."
- In the dialog, set "Values Column" to "Response" and "Column to Pivot" to "Question."
If this post helped please do give a kudos and accept this as a solution
Thanks In Advance
- mterry1 year agoHelper V
Thanks for the response - I didn't get a chance to try as the previous response worked.