Forum Discussion
Ara_Karapetyan
2 years agoHelper I
Split columns
Hi, I need to split columns by series of delimiters. I use a delimiters list: delimiters = {",", "-","—"}. The step I use is: Table.SplitColumn(source, "title", Splitter.SplitTextByEachDelimiter(d...
- 2 years ago
My mistake was I did not let the function to create a columns.
I added {"title", "1".."5"} and now that is ok.
Anonymous
2 years agoNot applicable
Change your function to Text.SplitAny([TextColumn], ",", "-", "~"). I used the ~ because I don't have the long dash on my phone.
Text.SplitAny(text as text, separators as text) as list
--Nate