Forum Discussion
Anonymous
4 years agoNot applicable
Add trim after Split
I am using this to Find/Replace a table let
Repl = Table.Buffer(ReplacementsTable),
Text = Text,
Result = Table.AddColumn(Text, "Changed Text Expected",
each Text.Combine(
List...
- 4 years ago
Use below in place of Text.Split([Text], "|")
Text.Split(Text.Replace(Text.Replace([Text]," |","|"),"| ","|") "|")
AnkitKukreja
4 years agoSuper User
Anonymous
Do you have limited scenarios then maybe try replacing value, else could you please share some sample data (5-10) rows and the expected output.