Forum Discussion

pranaysharmadel's avatar
pranaysharmadel
Regular Visitor
3 years ago

Transpose Grouped columns

I'm trying to transpose rows into columns for a given group.

My initial table looks like this with 13 columns 

GivenSurnamecompanyLiveemailContract StartContract EndInstructor CostLMS Course IDCourse TitleSMIPSectionStart DateEnd Date

 

 

The final table groups rows by these columns - "Given Surname company Liveemail Contract Start Contract End".

The remaining columns gets appended to the same row with a suffix 1,2,3 added like this.

So, the final table looks like this - 

This is the power query I have so far.

#"Grouped Rows" = Table.Group(#"Changed Type", {"Given", "Surname", "company", "Liveemail", "Contract Start", "Contract End"}, {{"crscount", each Table.RowCount(_), Int64.Type}}),

 

How can I have the columns added in end of the grouped row?

 

 

1 Reply

  • The columns need to be dynamic, if there are 100 rows for a given group, there need to be 100 sets of columns added to the main table like "LMS Course ID1 Course Title1 SMIP1 Section1 Start Date1 End Date1" all the way to  "LMS Course ID100 Course Title100 SMIP100 Section100 Start Date100 End Date100"