Modifying Array Formula to Use Wildcards

d_tech

New Member
Joined
Jul 19, 2017
Messages
12
Office Version
  1. 2016
Platform
  1. Windows
I've tried to modify the following formula to use wildcards but I can't seem to figure it out.

=IF(ISERROR(INDEX($B$1:$C$1000,SMALL(IF($C$1:$C$1000=$D$1,ROW($C$1:$C$1000)),ROW(1:1)),1)),"",INDEX($B$1:$C$1000,SMALL(IF($C$1:$C$1000=$D$1,ROW($C$1:$C$1000)),ROW(1:1)),1))

I'm trying to get the results of "*"&$D$1&"*" into here.

What's the solution?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Welcome to Mr Excel forum

If you are using Excel 2007 or higher try this
=IFERROR(INDEX(B:B,SMALL(IF(ISNUMBER(SEARCH($D$1,$C$1:$C$1000)),ROW($C$1:$C$1000)),ROWS(E$1:E1))),"")

Assumes the first formula in cell E1 (adjust to suit) then copied down to extract all instances that meet criterion.

Hope this helps

M.
 
Last edited:
Upvote 1
Solution

Forum statistics

Threads
1,215,523
Messages
6,125,318
Members
449,218
Latest member
Excel Master

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