We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 10 | |
| 9 | |
| 7 | |
| 6 | |
| 5 |