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!Get Fabric certified for FREE! Don't miss your chance! Learn more
Hello,
I need to remove dublicates from my grouped data. But how?
Thanks in advance
Solved! Go to Solution.
Hi @Anonymous
Another way is to filter rows according to Werk column string length after grouping. Duplicated rows have longer strings than others.
= Table.SelectRows(#"Grouped Rows", each Text.Length([Werk])<=4)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Text.Combine(List.Distinct([Werk]))
Hi @Anonymous
Best way is to select column 1 and column 2 before group by and remove duplicates.
Thanks
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.