I'd like to create a formula that looks for a partial match in two columns in two different Worksheets, and if there is a partial match between the two columns, it returns the value of a different column in Worksheet 2.
Example:
Sheet 1 Column A:
Dev
Tim
Jon
Sheet 2 Column A:
Development
Timothy
Jonathan
If there is a partial match as there is in these fields, I want it to return the value from Sheet 2 Column B.
Currently I have the following formula:
=INDEX(ValueIWant,MATCH(A1,ColumntoPartialMatchAgainst,0))
However, this returns the "ValueIWant" field only when there is an exact match.
How can I modify this formula to work with even a partial match?