Printing a person's name if a company name matches approximately.

jsiu4

New Member
Joined
Jan 3, 2019
Messages
1
I've been really frustrated trying to look up (oh god no pun intended) how to do this. I'm trying to do something so simple to understand but I'm having such a hard time trying to get Excel to understand what I want. Basically, I have 2 excel sheets. What I need to do is fill a contact list of people based on the company name. In the contact list that I'm filling out, column D is the company name, and I'm trying to fill column I with contact names that are in another sheet. On the second sheet the company names are in column C and the full names are in column A (if any of that matters). The company names is all that I have to work with and they're not exact :(. If I could get maybe the first 4 letters to match then print the name corresponding to the company name on a different column, this will make my life a lot easier and I could manually fill the remaining empty cells.

I also need to fill out Contact position, phone, and email but I think that if we can get the name to the corresponding company, I'll be able to figure out how to populate the other information.
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
how many characters re likely to match

The ABC company
ABC UK
ABC Inc
ABC Company
ABC Bros ltd
UK ABC chartered surveyors

maybe difficult to match up

there is a fuzzy logic addin for excel
https://www.microsoft.com/en-us/download/details.aspx?id=15011

you may also use a wildcard match

=MATCH("*"&LEFT(table1!A2,5)&"*",Table2!A2:A100,0)

will look at the first 5 characters table1 and try and match to anywhere in table and return the reference - BUT only the first it finds, not multiple entries
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,411
Messages
6,119,360
Members
448,888
Latest member
Arle8907

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top