+ Reply to Thread
Results 1 to 6 of 6

VLOOKUP connecting cells that have slightly different spellings

  1. #1
    Registered User
    Join Date
    02-17-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    12

    VLOOKUP connecting cells that have slightly different spellings

    Hello,
    I have 2 Excel Sheets namely (1) Office Mis (2) Client MIS

    In Office MIS we have Sr. No. & Name as follows:
    Sr. Customer Name
    01 - Mr. Mr. Santosh Pashupati Jha & Mrs. Priti Santosh Jha - Nov (33)
    02 - Mrs. Manjusha Ladoba Lad & Mr. Ladoba Ramchandra Lad - Jan (07)
    03 - Meghana M. Naik & Mr. Mangesh M. Naik - Jan (06)
    04 - Mrs. Ashabai Bitu Dange & Mr. Bitu Tatoba Dange - Jan (08)
    05 - Mr.Gangadhar Vaman Gosavi - Jan (01)
    06 - Mr. Ganesh Shivaji Gopal - Jan (02)
    07 - Mr. Milind Salvi & Lalita Salvi - Jan (03)
    08 - Mrs. Kusum Trilokinath Pandey - Jan (04)
    09 - Mrs. Neelam Sachinkumar Gupta & Mr. Sachinkumar Ramprasad Gupta - Dec (63)
    10 - Mr. Yogesh Ambadas Jagtap - Dec (52)

    In Client MIS we have similar names and Appl No. as follows:

    App. No. Customer Name

    100454 Mrs. Shobha B. Rokade & Mr. Ketu B. Rokad
    101880 Mr. Vishal H. Nikam & Mrs. Sheetal V. Nikam
    102271 Mr. Praveenkumar Gurucharan Gupta
    95584 (1) Mrs. Sonali Pritesh Shinde (2) Mr. Pritesh K. Shinde (3) Mrs. Shakuntala K. Shinde
    99969 (1) Mr. Arun Parshuram Satale & (2) Mrs. Soravi Arun Satale
    100456 Mr. Chadrama S. Yadav & Mr. Karamchand C. Yadav
    101722 Mr. Sanjeevan Jyoti Bose
    101108 Mr. Ramasare Shobhnath Gupta
    97830 Mrs. Chandrakala A. Singh

    Now we want to compare the names which are slight different and put App. No. in Office MIS.

    This data runs into 500 names. So we need to compare this data and bring the data in Office MIS. Can you please tell me the formula.

    Thanks Poonam

  2. #2
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,769

    Re: VLOOKUP connecting cells that have slightly different spellings

    There is no easy formula to do this sort of check: your sample does not appear to have any matches using the human eye!

    In both lists there is extraneous data to be removed e.g Dates [Jan (30)] on "Office MIS" and numbers [ (n) ] in "Client MIS" before any comparison could be done.

    You will need VBA rather than formulae to try to get a match..

  3. #3
    Registered User
    Join Date
    02-17-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    12

    Re: VLOOKUP connecting cells that have slightly different spellings

    Thank you for aprompt reply, can you help with VBA or any other solution as removing Dates [Jan (30)] on "Office MIS" and numbers [ (n) ] in "Client MIS" before any comparison is very time consuming.

  4. #4
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,769

    Re: VLOOKUP connecting cells that have slightly different spellings

    Attach a sample workbook with 20-30 rows of data in both sheets


    Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on "REPLY" then GO ADVANCED and then scroll down to Manage Attachments to open the upload window.


    I will try to look at this over the weekend.

  5. #5
    Registered User
    Join Date
    02-17-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    12

    Re: VLOOKUP connecting cells that have slightly different spellings

    I have attached the Excel with three sheets (1) Office MIS (2) Client MIS & (3) Desired Result in Office MIS. I have done it maunally for you.
    Attached Files Attached Files

  6. #6
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,769

    Re: VLOOKUP connecting cells that have slightly different spellings

    See the attached.

    I have used formula to remove much of the "extraneous" data as practcical.

    In "Office MIS"

    column E

    =TRIM(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(MID(B2,8,255),"(",""),")",""),"1",""),"2",""),"3",""),"-",""),"Mr.",""),"Mrs.",""))

    In "Client MIS"

    in Column D

    =TRIM(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(B3,"(",""),")",""),"1",""),"2",""),"3",""),"Mr.",""),"Mrs.",""))

    in "Office MIS"

    in column G

    Copied data from column D of "Client MIS"

    Column F

    =IFERROR(IF(MATCH(E2,$G$2:$G$20,0),"Matched",""),"")

    Matches columns E & G

    in column G I have highlighted in RED why there is no MATCH.

    Hopefully you can use this approach to assists in finding the matches: you will not get a 100% match.

    Now signing off for the day (night!)
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. VLOOKUP with time - Slightly complicated
    By deepindreamz in forum Excel General
    Replies: 1
    Last Post: 03-14-2015, 01:25 AM
  2. Replies: 8
    Last Post: 01-16-2015, 07:21 AM
  3. [SOLVED] Problems with VLOOKUP connecting cells that have slightly different spellings
    By chilli76 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 04-06-2014, 11:38 AM
  4. VLOOKUP slightly different text
    By csch123 in forum Excel General
    Replies: 1
    Last Post: 01-31-2013, 03:31 PM
  5. Search for one word with 2 different spellings
    By jomili in forum Excel General
    Replies: 5
    Last Post: 06-10-2010, 02:57 PM
  6. Check name against different spellings list
    By dopple in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-01-2008, 06:58 AM
  7. connecting multiple cells to new sheet (VLOOKUP?IF?)
    By Gregula in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-18-2006, 03:10 PM

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