Need to create an index of all lines with a specific letter, need wildcards

CheeseMan1

New Member
Joined
Dec 30, 2016
Messages
1
I buy many kinds of products from many manufactures, I have a list like this

Cheese Manufacture
MozzarellaA
CheddarA, B
MuensterB,C
JackC
ColbyA, C
SwissD

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

I can easily find which manufacture makes each kind of cheese, I also need to know which cheese each manufacture makes, so if I were to type "A" in (A9) I would get line 1,2, and 5,

I have the following but 'IF" can't use wildcards so it will not find line 2 or 5
=INDEX($A$1:$C$8,SMALL(IF($B$1:$B$8=$A$9,ROW($B$1:$B$8)),ROW(List!1:1)),1)
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
maybe something like...

D2=IFERROR(INDEX($A$2:$A$7,SMALL(IF(ISNUMBER(SEARCH($C$1,$B$2:$B$7)),ROW($A$2:$A$7)-ROW($A$2)+1),ROWS($D$2:D2))),"") Control Shift Enter


Row\Col
A​
B​
C​
D​
1​
a
2​
MozzarellaAMozzarella
3​
CheddarA, BCheddar
4​
MuensterB,CColby
5​
JackC
6​
ColbyA, C
7​
SwissD

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,935
Messages
6,122,337
Members
449,077
Latest member
Jocksteriom

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