Forum Discussion
andy421
2 years agoFrequent Visitor
Removing duplicate values from a single row
I have an email column which has data like email [email protected] [email protected] [email protected],[email protected],[email protected] [email protected] [email protected],[email protected] I need to keep only 1 email in the row ...
- 2 years ago
Hello - you can get the expected result by extracting the text before the comma, like this:
Table.TransformColumns(#"Changed Type", {{"Column1", each Text.BeforeDelimiter(_, ","), type text}})Result
jennratten
Super User
2 years agoHello - you can get the expected result by extracting the text before the comma, like this:
Table.TransformColumns(#"Changed Type", {{"Column1", each Text.BeforeDelimiter(_, ","), type text}})
Result