Forum Discussion
atpbi10
Helper I
5 years agoRemove certain string from text in the column
Hey! How can I transform this column which contains certain string that starts with certain character which is in my case "PL" Name Jay Chua PL231221 John Cena Arnold Black PL212233 ...
- 5 years ago
You can add a custom column with this formula
= Text.Combine(List.Select(Text.Split([Name], " "), each not(Text.Contains(_, "PL"))), " ")
Pat
mahoneypat
Microsoft Employee
5 years agoYou can add a custom column with this formula
= Text.Combine(List.Select(Text.Split([Name], " "), each not(Text.Contains(_, "PL"))), " ")
Pat