majesticoj
New Member
- Joined
- Nov 19, 2019
- Messages
- 7
I've found formulas where you can use a "wild card", so to speak, to find a partial string match within another column:
For instance, this formula would find "dog" (C1) in "took the dog out" (D3) and return "yesterday" (E2).
However my strings in columns C and D aren't laid out in that way.
For instance, I need to partial match and return adjacent value when C1 is "took the dog out" and D3 is "dog". Putting wildcards around C1 wouldn't work.
Example file here.
(Forgive me for not finding a succinct and articulate way to to verbalize the exact formula I'm looking for)
=IFERROR(INDEX(E:E,MATCH("*"&C1&"*",D:D,0)),"")
For instance, this formula would find "dog" (C1) in "took the dog out" (D3) and return "yesterday" (E2).
However my strings in columns C and D aren't laid out in that way.
For instance, I need to partial match and return adjacent value when C1 is "took the dog out" and D3 is "dog". Putting wildcards around C1 wouldn't work.
Example file here.
(Forgive me for not finding a succinct and articulate way to to verbalize the exact formula I'm looking for)
Last edited by a moderator: