+ Reply to Thread
Results 1 to 11 of 11

Finding duplication in name list

  1. #1
    Registered User
    Join Date
    03-29-2013
    Location
    Singapore
    MS-Off Ver
    Excel 2010
    Posts
    9

    Finding duplication in name list

    Excel 2010 does have a function to remove duplicates. But that only works if the text is exactly the same.

    However, sometimes there some whose names are placed differently (Different placement of Middle and First names).
    For example, "Jason Leong Zhi Kai & Leong Zhi Kai Jason".

    Is there any way to find identify those that are duplicate despite having their middle/first name placed in different orders?

    Any help is greatly appreciated!
    Last edited by bosetan; 04-02-2013 at 08:01 AM.

  2. #2
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: Finding duplication in name list

    Hi Bosetan,

    You need to come out with some logic or process the data as per data pattern.
    other wise, how can you tell Excel that which part of name is first name and which one is last name




    Regards,
    DILIPandey
    <click on below * if this helps>
    DILIPandey, Excel rMVP
    +919810929744 (India), +971528225509 (Dubai), dilipandey@gmail.com

  3. #3
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852

    Re: Finding duplication in name list

    This is a workaround and I´m sure there would be better ways to do it with VB but this will probably get you in the right direction.

    First you would have to get the individual sections of the names into separate cells. Using the Text to columns - delimited by space.

    Then you could sort each line horizontally starting with the column B

    Then you would sort vertically, starting with name 1, each consecutive column being an extra level.

    Then you could apply a If statement on another column o check if all names in the row are the same as the one bellow.
    If they are, you have a duplicate.

    The attached sheet does that with a macro.

    Paste your list of names Starting in A2 and then click the button. See how it words.
    It is limited to 7 names per cell, delimited by space only, if statement down to 5000 rows

    Make sure to enable macros when opening the sheet.
    Attached Files Attached Files
    Last edited by Portuga; 03-29-2013 at 09:51 AM.
    If you found the solution to your question. Mark the thread as "Solved"
    Thank everyone that helped you with a valid solution by clicking on their

    There is no such thing as a problem, only a temporary lack of a solution

  4. #4
    Registered User
    Join Date
    03-29-2013
    Location
    Singapore
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: Finding duplication in name list

    Quote Originally Posted by Portuga View Post
    This is a workaround and I´m sure there would be better ways to do it with VB but this will probably get you in the right direction.

    First you would have to get the individual sections of the names into separate cells. Using the Text to columns - delimited by space.

    Then you could sort each line horizontally starting with the column B

    Then you would sort vertically, starting with name 1, each consecutive column being an extra level.

    Then you could apply a If statement on another column o check if all names in the row are the same as the one bellow.
    If they are, you have a duplicate.

    The attached sheet does that with a macro.

    Paste your list of names Starting in A2 and then click the button. See how it words.
    It is limited to 7 names per cell, delimited by space only, if statement down to 5000 rows

    Make sure to enable macros when opening the sheet.
    Hey man,

    The file you attached is great. But its kinda complex for me to understand those formulas that you key in. (for example, setting up the macro)
    Is it possible that list down the steps you took? Or link me a webby where there is a guide on this.

    P/S: I've gotta redo this on my office comp as they're really strict with the security. Hence, I need to know the steps to make this work out well.

    Thanks in advance man!

    Edit: I've roughly grasped the concept of it but did encounter some issues on the way. When I tried sorting out the data as a whole (many rows at one time), the sorting doesn't seem to work. But if I were to sort it out individually (Row by row), it works perfectly. Any idea what's causing this issue and is there any solution to it? Lastly, I just need some guide on setting up the macros so that I can have my job done at the click of a button! Once again, thanks a lot for the help!
    Last edited by bosetan; 03-29-2013 at 05:30 PM.

  5. #5
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852

    Re: Finding duplication in name list

    You have to do it row by row, that is why macros are great for repetitive tasks.

    Press Alt+F11 this opens the VBA editor
    Insert a module if there is none there

    Paste the following code in the module:

    Please Login or Register  to view this content.
    In column I create the if statement
    Then insert a basic shape. Any shape, and assign the macro TextToColumnsandSortRows to it
    Last edited by Portuga; 03-29-2013 at 06:19 PM.

  6. #6
    Registered User
    Join Date
    03-29-2013
    Location
    Singapore
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: Finding duplication in name list

    Quote Originally Posted by Portuga View Post
    You have to do it row by row, that is why macros are great for repetitive tasks.

    Press Alt+F11 this opens the VBA editor
    Insert a module if there is none there

    Paste the following code in the module:

    Please Login or Register  to view this content.
    In column I create the if statement
    Then insert a basic shape. Any shape, and assign the macro TextToColumnsandSortRows to it
    Hey man, thanks for all your help! I've understand most of it, just one tiny bitty part. Can you kindly explain in detail your IF equation for the conditional formatting in the "I" column?

    Thanks in advance!

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Finding duplication in name list

    Hi bosetan

    It is unnecessary to use "reply with quote" when replying here, unless there is a specific point in a poster's post you want to high-light - otherwaise all it does is take up space and cause clutter

    Thanks
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  8. #8
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852

    Re: Finding duplication in name list

    If you read the formula aloud, it basically says what it does:
    If all separated cell names in one row match all the ones immediately bellow, then you have a duplicate, if not, not a duplicate.

    See these on if statements:

    http://www.experiglot.com/2006/12/11...th-and-or-not/

    http://www.myonlinetraininghub.com/e...ions-explained


    Quote Originally Posted by FDibbins View Post

    It is unnecessary to use "reply with quote" when replying here, unless there is a specific point
    This is a very good point.

  9. #9
    Registered User
    Join Date
    03-29-2013
    Location
    Singapore
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: Finding duplication in name list

    Hey Portuga,

    Thanks a lot! Managed to run it smoothly on my company's computer.
    Any idea what's the macro to delete the whole row of those that are considered "duplicated"?

  10. #10
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852

    Re: Finding duplication in name list

    No problem.

    What you are asking now is a different problem and you should start a new thread for it in the Excel Programming / VBA / Macros section.

    If you are happy with this solution, mark the thread as solved

  11. #11
    Registered User
    Join Date
    03-29-2013
    Location
    Singapore
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: Finding duplication in name list

    Always happy to do that! Thanks a lot anyway!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1