Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
sara11
Helper I
Helper I

Change the order of text in a column

I have a column with text like this:

Kristof, I., Apud, G.R., Aredes-Fernández, P.
or
Wacker, M., Keiser, J., Hirt, B., Stahl, M., Scharfenberger-Schmeer, M., Durner, D.
or
Yem, O., Petrie, P.R.

 

and I'd like to change this text to

I. Kristof, G. R. Apud, P. Aredes-Fernández
M. Wacker, J. Keiser, B. Hirt, M. Stahl, M. Scharfenberger-Schmeer, D. Durner

O. Yem, P. R. Petrie

i.e. the first names appear first, followed by the surname. The authors' names are separated by ",".

 

Thank you.

1 ACCEPTED SOLUTION
slorin
Super User
Super User

Hi, @sara11 

 

Text.Combine(
List.Transform(
List.Split(Text.Split([Your_Column],", "),2),
each Text.Combine(List.Reverse(_)," ")),
", ")

Stéphane

View solution in original post

2 REPLIES 2
slorin
Super User
Super User

Hi, @sara11 

 

Text.Combine(
List.Transform(
List.Split(Text.Split([Your_Column],", "),2),
each Text.Combine(List.Reverse(_)," ")),
", ")

Stéphane

Thank you! It worked!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.