I have data in 2 Columns.
A: Addresses
B: List Of Different Areas
Column A will be much much longer (more cells/rows) than column B.
Like this:
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]opp-don bosco school,jivraj park
[/TD]
[TD]Shyamal[/TD]
[/TR]
[TR]
[TD]pearl apartments, opp. shakti school, near shyamal cross roads, satellite
[/TD]
[TD]Ramdevnagar[/TD]
[/TR]
[TR]
[TD]orcid park , b/h shalby hospital ramdevnagar,ahmedabad.
[/TD]
[TD]Jivraj[/TD]
[/TR]
[TR]
[TD]i-404 kala residency, times of india press road Shyamal
[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I want Column C to be filled with such a formula, that will look up into each entry of Column A, and find if any area from Column B (Area List) is part of the full address. If it is, it will put the area name in that cell of C, else it will keep it blank.
The result should be like this:
[TABLE="class: grid, width: 800, align: left"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[/TR]
[TR]
[TD]opp-don bosco school,jivraj park[/TD]
[TD]Shyamal[/TD]
[TD]Jivraj[/TD]
[/TR]
[TR]
[TD]pearl apartments, opp. shakti school, near shyamal cross roads, satellite[/TD]
[TD]Ramdevnagar[/TD]
[TD]Shyamal[/TD]
[/TR]
[TR]
[TD]orcid park , b/h shalby hospital ramdevnagar, ahmedabad.[/TD]
[TD]Jivraj[/TD]
[TD]Ramdevnagar[/TD]
[/TR]
[TR]
[TD]i-404 kala residency, times of india press road[/TD]
[TD][/TD]
[TD]Shyamal
[/TD]
[/TR]
</tbody>[/TABLE]
I hope I have mentioned this problem clearly enough.
Basically, this is like reverse VLookup. I want to find if any of the word from column B appears in individual cells of Column A, and if it does, I want to put that word in Column C in respective row.
Thank you for your time...
A: Addresses
B: List Of Different Areas
Column A will be much much longer (more cells/rows) than column B.
Like this:
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]opp-don bosco school,jivraj park
[/TD]
[TD]Shyamal[/TD]
[/TR]
[TR]
[TD]pearl apartments, opp. shakti school, near shyamal cross roads, satellite
[/TD]
[TD]Ramdevnagar[/TD]
[/TR]
[TR]
[TD]orcid park , b/h shalby hospital ramdevnagar,ahmedabad.
[/TD]
[TD]Jivraj[/TD]
[/TR]
[TR]
[TD]i-404 kala residency, times of india press road Shyamal
[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I want Column C to be filled with such a formula, that will look up into each entry of Column A, and find if any area from Column B (Area List) is part of the full address. If it is, it will put the area name in that cell of C, else it will keep it blank.
The result should be like this:
[TABLE="class: grid, width: 800, align: left"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[/TR]
[TR]
[TD]opp-don bosco school,jivraj park[/TD]
[TD]Shyamal[/TD]
[TD]Jivraj[/TD]
[/TR]
[TR]
[TD]pearl apartments, opp. shakti school, near shyamal cross roads, satellite[/TD]
[TD]Ramdevnagar[/TD]
[TD]Shyamal[/TD]
[/TR]
[TR]
[TD]orcid park , b/h shalby hospital ramdevnagar, ahmedabad.[/TD]
[TD]Jivraj[/TD]
[TD]Ramdevnagar[/TD]
[/TR]
[TR]
[TD]i-404 kala residency, times of india press road[/TD]
[TD][/TD]
[TD]Shyamal
[/TD]
[/TR]
</tbody>[/TABLE]
I hope I have mentioned this problem clearly enough.
Basically, this is like reverse VLookup. I want to find if any of the word from column B appears in individual cells of Column A, and if it does, I want to put that word in Column C in respective row.
Thank you for your time...