Forum Discussion

pruehoyer's avatar
pruehoyer
New Member
2 years ago
Solved

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. 

  • =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.

3 Replies

    • j_ocean's avatar
      j_ocean
      Helper V

      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
      • wdx223_Daniel's avatar
        wdx223_Daniel
        Community Champion

        =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.