Forum Discussion
JDL623
2 years agoNew Member
extract text connected by an underscore from a string of text
Hi, Is there a way to extract a string of text connected by an underscore into a new column?
Thank you
Hi JDL623
Give this a go:
Text.Combine( List.Select( Text.Split([Description], " "), each Text.Contains(_, "_" )), ", ")
I hope this is helpful