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
Can someone point me in the right direction please.
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: