Forum Discussion
joooffice
6 years agoHelper I
Split column by word
Hi, I have a column containing the names of parents and children merged together that i would like to split into the child and parents names. The split should come before the 'son of' or 'daughte...
- Anonymous6 years ago
try this:
Table.SplitColumn(#"Changed Type", "Column1", Splitter.SplitTextByAnyDelimiter({"son of","daughter of"}, QuoteStyle.Csv), {"children", "parent"})
Anonymous
6 years agoNot applicable
try this:
Table.SplitColumn(#"Changed Type", "Column1", Splitter.SplitTextByAnyDelimiter({"son of","daughter of"}, QuoteStyle.Csv), {"children", "parent"})
- joooffice6 years agoHelper I
Thanks, so obvious now you've shown me!