Forum Discussion
jmdlb
4 years agoRegular Visitor
Text.AfterDelimiter tricky
Hi! I have to extract some text from a field after N commas (","), so I use Text.AfterDelimiter with optional index to specify hoy many of those characters commas I want to jump. The tricky part ...
- 4 years ago
You will need to use Table.ReplaceValue for this.
= Table.ReplaceValue(#"Columna duplicada",each [Results],each Text.AfterDelimiter([Results], ",", [CommaJump] ),Replacer.ReplaceValue,{"Results"})
Vijay_A_Verma
4 years agoMost Valuable Professional
You will need to use Table.ReplaceValue for this.
= Table.ReplaceValue(#"Columna duplicada",each [Results],each Text.AfterDelimiter([Results], ",", [CommaJump] ),Replacer.ReplaceValue,{"Results"})- jmdlb4 years agoRegular Visitor
Genius! Thanks 🙂