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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
pruehoyer
New Member

First and Last Name Order

I have a column containing first and last names but the order is not consistant, sometimes the order is Last Name First Name and sometimes the order is Fist Name Last Name (eg. Hoyer Prue and Prue Hoyer)

 

I am hoping to find a way to combine the data for Hoyer Prue and Prue Hoyer as they are the same person. 

1 ACCEPTED SOLUTION

=Text.Combine(List.Sort(Text.Split([Name]," "))," ")

this can help to find the duplicated names, but it can no recognise which is the first unless you have a supporting list of first name or last name.

View solution in original post

3 REPLIES 3
wdx223_Daniel
Super User
Super User

you can split the name by space, then List.Sort and Text.Combine

How would that help if you're not finding a way to identify which is first and which is second?

 

The split gives  

 

Hoyer PrueHoyerPrue
Prue HoyerPrueHoyer

 

Then combining

 

Hoyer PrueHoyer Prue
Prue HoyerPrue Hoyer

=Text.Combine(List.Sort(Text.Split([Name]," "))," ")

this can help to find the duplicated names, but it can no recognise which is the first unless you have a supporting list of first name or last name.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors