stuck searching

DippNCope

Board Regular
Joined
May 21, 2009
Messages
77
I need some help in searching.
I have a list of software in Column C and a list of install paths in Column D . Both are in named ranges, softwarelist and installpaths.
I want to enter Adobe in B1 and have formula return every instance of adobe it finds in softwarelist or C:C and return it's value and the corresponding installpaths or D:D

So if it finds adobe reader and adobe pro it should return both
This works but only returns the first instance

Code:
=IF(ISNA(INDEX(Installpaths,MATCH(B1&"*",softwarelist,0))),"",INDEX(Installpaths,MATCH(B1&"*",softwarelist,0)))

Can someone point me in the right direction please.
 
Last edited:

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Try

Array formula in B2 copied down
=IFERROR(INDEX(Installpaths,SMALL(IF(ISNUMBER(SEARCH(B$1,softwarelist)),ROW(Installpaths)-MIN(ROW(Installpaths))+1),ROWS(B$2:B2))),"")
confirmed with Ctrl+Shift+Enter, not just Enter

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,240
Members
452,621
Latest member
Laura_PinksBTHFT

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