Forum Discussion
Anonymous
4 years agoNot applicable
Filtering out data from one column into another
I got a column in my table called attributes_overview in which information is just unsorted. It looks something like this: Title | Attributes_Overview | Price Laptop A | ADE34DG 123.123.123.123 ...
amitchandak
4 years agoSuper User
Anonymous , Try a new column in the power query
Text.Combine( List.Select(Text.Split([Attributes_Overview], " "), each _ Text.Contains(_, ".")),",")
I was not able test that
Anonymous
4 years agoNot applicable
What do the "_" stand for?