Forum Discussion
joooffice
Helper I
6 years agoSplit 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"})
joooffice
Helper I
6 years agoThanks, so obvious now you've shown me!