Search for multiple text and return multiple values

MagiCarty

New Member
Joined
Oct 4, 2013
Messages
12
So I have column S in which each cell has a description of a sport program like "Coed 5v5 New Years Soccer Challenge" and I want to create a new column AE that searches column S for a list of key sports words from column AG "Soccer","Volleyball",etc. When we find "Soccer" or "Volleyball" in column S, I want to return just those names "Soccer","Volleyball",etc.

I feel like this would be super easy with an array, but I'm just terrible at them. Please help me internets.

Many thanks.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Given in A1:
Coed 5v5 New Years Soccer ChallengeSoccer
Coed 5v5 New Years Volleyball ChallengeVolleyball
Grand finale Badminton 2014Badminton
2014 Football League ChampionshipFootball

<tbody>
</tbody>

Given in any column of your choice the following list, example in G1 to G4:
<style>table { }td { padding-top: 1px; padding-right: 1px; padding-left: 1px; color: black; font-size: 12pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Calibri,sans-serif; vertical-align: bottom; border: medium none; white-space: nowrap; }</style>
Soccer
Volleyball
Badminton
Football

<tbody>
</tbody>

1- create a Named range 'list' containing G1:G4
2- in B1 type =IF(ISNUMBER(FIND(list,$A1)),list, "") copied down till needed.

Adjust the range to fit your requirement.

Would that work for you?
 
Upvote 0

Forum statistics

Threads
1,214,885
Messages
6,122,090
Members
449,065
Latest member
Danger_SF

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