March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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 looks as follows:
DetailColumns = Table.ExpandRecordColumn(RecordsOfPage, "PageData", {"FullName", "Field1","Field2","Field3"}
[FullName] returns Last, First name (i.e. "Smith, Joe"). I need to transform this to "Joe Smith".
I suspect it has something to do with the function: Text.BeforeDelimiter([FullName], ",", 0), type text) and Text.AfterDelimiter([FullName], ",", 0), type text) <--NOTE: SYNTAX MAY/MAY NOT BE CORRECT
However, I'm not familiar enough with the M language to how exactly embed this within the ExpandRecordColumn line of code. I tried to do it afterwards by pulling [FullName] twice, but I can't pull the same field twice. Advice going either direction would be much appreciated.
Solved! Go to Solution.
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
Start a new thread and please provide a data sample in text format
Hello! I know this is old but this is what I'm looking for. However I keep getting errors because some of my values are null. How could you edit this query to account for nulls?
Try using 'Add Column from examples' to see what powerbi comes up with. Give it some good examples .
sweet. thank you! it gave me this: let splitConsultant = Splitter.SplitTextByDelimiter(", ", QuoteStyle.None)([Consultant]) in Text.Combine({splitConsultant{1}?, " ", splitConsultant{0}?})
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
20 | |
13 | |
10 | |
9 | |
7 |
User | Count |
---|---|
39 | |
27 | |
16 | |
15 | |
10 |