Forum Discussion
Anonymous
6 years agoNot applicable
Within M Language change "Last, First" Name to "First Last"?
Hi all, Thank you to everyone for this continued support on this community. It has been incredibly helpful with getting through this project. So continuing that path... I have code that loo...
- 6 years ago
Hi Anonymous ,
Try this code on add a new column for Power Query:
Text.Combine(List.Reverse(Text.Split([Column1],",")), " ")
Did I answer your question? Mark my post as a solution!
Ricardo
HotChilli
Community Champion
6 years agoTry using 'Add Column from examples' to see what powerbi comes up with. Give it some good examples .
Anonymous
4 years agoNot applicable
sweet. thank you! it gave me this: let splitConsultant = Splitter.SplitTextByDelimiter(", ", QuoteStyle.None)([Consultant]) in Text.Combine({splitConsultant{1}?, " ", splitConsultant{0}?})