• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Help!

Help! I have a big table with names (6000 records) and a smaller table (384 record) with names. How do I identify which names on the BIG table are on the SMALL table? Thanks
 
Attach a sample workbook (not a picture or pasted copy). 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.

This will help to identify your layout and provide you with a viable solution.

Remember to desensitize the data.
 
Thank you AlanSidman for the reminder. Attached is the file.
Thank you for your help.
kim
 

Attachments

  • To Chandoo_CustomerList.xlsx
    789.7 KB · Views: 7
An alternative solution is to use Power Query and join the two tables on the name. Attached is the file with that solution.
 

Attachments

  • To Chandoo_CustomerList.xlsx
    803.4 KB · Views: 2
An alternative solution is to use Power Query and join the two tables on the name. Attached is the file with that solution.
Hi Alandsidman,
I am not familiar with Power Query (which is another thing I have to learn). But I tried Fluff13's solution and it works.
Thanks for your help.
kim
 
At the moment, an approximate match is much faster than an exact match applied to a sorted list, so
=SIGN(LOOKUP([@Name],RefTable[Name])=[@Name])
would provide a more efficient test. The date itself may then be returned by
=IF([Match?],LOOKUP([Name],RefTable[Name],RefTable[Date Back]),"")

I think this is about to change in Office 365, with the lookup table being sorted within memory to allow a bisection search. In that case Fluff13's solution becomes the preferred option.

Opinions, anyone?
 

Attachments

  • CustomerList (PB).xlsx
    868.7 KB · Views: 3
Back
Top