Partial Match Columns Data within two sheets

satish78

Board Regular
Joined
Aug 31, 2014
Messages
218
Hi Friends,

I did research related to my task but did not find exactly what I am looking
Trying to partial match Sheet1 columnA with Sheet2 ColumnA and sheet1 ColumnB with sheet2 ColumnB and get corresponding sheet2 columnC data to sheet1 columnC.

If possible, also Reverse lookup and partial match sheet2 row3 data with sheet1 row5 (because "ross land" and "Developer/engineer" with Sheet1 row5 is partial name matched)

Need VBA/Index match

Here is an example data
Sheet1

Ross Land Front-End Developer
Raj Parmar Application Architect / CTI
Shraddha Pathak Software Engineer at F.M.Howell
Mathew Rawlinson Program Director, Digital
Ross Land Developer/engineer
Aaron Nguyen Ecommerce at Deep

Sheet2
Ross Land Front-End Developer ross@gmail.com
Raj Parmar Application Architect / CTI .Net and C++… raj@gmail.com
Ross Land, CFO Developer/engineer rossj@gmail.com
Shraddha Pathak Software Engineer at F.M.Howell shraddha@gmail.com
Mathew Rawlinson Program Director, Digital TV & Applicati… mathew@gmail.com
Aaron Nguyen Ecommerce at Deep Discount Servers Aaron@gmail.com

Please help me
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Ross Land Front-End Developer9Ross Land2
Raj Parmar Application Architect / CTI11Raj Parmar1
Shraddha Pathak Software Engineer at F.M.Howell15Shraddha Pathak1
Mathew Rawlinson Program Director, Digital16Mathew Rawlinson1
Ross Land Developer/engineer9Ross Land2
Aaron Nguyen Ecommerce at Deep12Aaron Nguyen1
Sheet2
Aaron Nguyen Ecommerce at Deep Discount Servers Aaron@gmail.com12Aaron Nguyen
Mathew Rawlinson Program Director, Digital TV & Applicati… mathew@gmail.com16Mathew Rawlinson
Raj Parmar Application Architect / CTI .Net and C++… raj@gmail.com11Raj Parmar
Ross Land Front-End Developer ross@gmail.com9Ross Land
Ross Land, CFO Developer/engineer rossj@gmail.com9Ross Land
Shraddha Pathak Software Engineer at F.M.Howell shraddha@gmail.com15Shraddha Pathak
by stripping out the names you can search for duplications
we have just 1 in this example
probably I would sort the lower table into ascending order
not sure what you want now

<colgroup><col><col span="2"><col><col span="2"></colgroup><tbody>
</tbody>
 
Upvote 0
This formula does "Exact Match" =INDEX(Sheet2!C:C,MATCH(1,(A1=Sheet2!A:A)*(B1=Sheet2!B:B),0))
But I need "partial Match" formula.
Can anyone modify or provide me VBA code for above task?.
 
Upvote 0

Forum statistics

Threads
1,216,737
Messages
6,132,436
Members
449,727
Latest member
Aby2024

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