Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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.
Solved! Go to 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.
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 Prue | Hoyer | Prue |
| Prue Hoyer | Prue | Hoyer |
Then combining
| Hoyer Prue | Hoyer Prue |
| Prue Hoyer | Prue 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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 5 | |
| 4 | |
| 3 |