Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have this list.
I would like to keep one record per article ID and have the MM_MMW_Detailed column repeat with a delimiter (preferably a line break but any other delimiter would also be acceptable).
It looks like there is an accepted solution to my question but I can't get it to work.
My attempt -
Yields this error -
Any assitance is very much appreciated.
Solved! Go to Solution.
Hi @X3svfdB1HOjKYc0,
You cannot aggregate your Detailed column with sum because your data type is a string.
Your frist step is correct, you need to group them.
Then instead of aggregating, select all columns without aggregations.
Then create a custom colmn to concat the Detailed column.
I attached a sample pbix for your guide.
Hi @X3svfdB1HOjKYc0,
You cannot aggregate your Detailed column with sum because your data type is a string.
Your frist step is correct, you need to group them.
Then instead of aggregating, select all columns without aggregations.
Then create a custom colmn to concat the Detailed column.
I attached a sample pbix for your guide.