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

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
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,214,873
Messages
6,122,029
Members
449,061
Latest member
TheRealJoaquin

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