Forum Discussion
cannellonigreyh
3 years agoFrequent Visitor
How to remove multiple email addresses
Hello. A field (emailBody) contains the body/text of certain emails we have received. In Power Query, I need to remove/obscure email addresses for data protection reasons. One entry can cont...
- 3 years ago
cannellonigreyh You can use this:
AddedCustom = Table.AddColumn ( PreviousStep, "New Text", each Text.Combine ( List.Select ( Text.Split ( [Text], " " ), each not Text.Contains ( _, "@" ) ), " " ), type text )
cannellonigreyh
3 years agoFrequent Visitor
You really are a Rockstar, AntrikshSharma