Forum Discussion

mterry's avatar
mterry
Helper V
1 year ago
Solved

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...
  • ronrsnfld's avatar
    1 year ago

    Just Pivot with no aggregation

     

    Table.Pivot(#"Previous Step", List.Distinct(#"Changed Type"[Question]), "Question", "Response")