Forum Discussion
mcflurry
2 years agoHelper I
Pivoted table with multiple values on one column
I'm facing a problem pivoting a table. I have issues with 3 columns (after pivoting) which fields have more than one value. The problem is that these columns have hundreds of fields with their righ...
dufoq3
2 years agoCommunity Champion
Keezz
2 years agoHelper I
Without further clarification and sample data I can only guess...
- Take you 100K table
- Do a group by on all columns except the insight attribute columns
- selecting 'keep all rows'
- Name the aggregate column [Attribute Rows]
- Add an new column with the following formula
- = Table.AddColumn(#"Grouped Rows", "Attributes", each Text.Combine([Attribute Rows][INSIGHT_ATTRIBUTE_NAME], "|"))