How to search string from one column in an adjacent column, display match in third?

astrbac

Board Regular
Joined
Jan 22, 2015
Messages
55
Hi all,

I have a pretty simple (or maybe not?) task to perform, in a small-ish spreadsheet.

Data is imported from two different software applications; one is a website form and another is an official "register" of a sort. In the register the names and last names are taken from ID's properly, in separate fields. On the website however, users enter a plethora of, well, "forms" of their names :).

What I need to do is search for strings entered through a website form, in a dataset imported from the official register.

Final goal: count the number of matches; a simple numeric value, nothing else.

Example below, I hope this makes it a bit easier.
Many thanks in advance!

name (from App 1)Name from (App 2)Last name from (App 2)match
John SmithMarco PoloThe ThirdFALSE
Steve Ivan HoeJediKnightFALSE
Janice MurphyJohnSmithTRUE
Marc AnthonyJoaoGilbertoTRUE
Gilberto JoaoSteveIrvineFALSE
James MarshallHendrixFALSE
LittleCatFALSE

<colgroup><col><col><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Not quite sure what you're asking for, I presume you want a formulaic calculation in the Match column...
=OR(NOT(ISERROR(MATCH(B2&" "&C2,$A$2:$A$6,0))),NOT(ISERROR(MATCH(C2&" "&B2,$A$2:$A$6,0))))
 
Upvote 0
Yes, I need to find TRUE/FALSE in the "Match" column and then simply filter or count the number of "true"'s in that column. That's all
;)


Thanks!
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,380
Members
448,955
Latest member
BatCoder

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