A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
Would you bother to share some data and show the expected result. Share data in a format that can be pasted in an MS Excel file.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
find a word in an array, if yes then copy value from a cell
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Hi,
Would you bother to share some data and show the expected result. Share data in a format that can be pasted in an MS Excel file.
Could you share some dummy data and show expected result? Then I can give formula suggestions on it.
Here is a formula to find "ABC" in array A2:A4, if found, it will copy value from C2 to D2.
=IF(OR(A2:A4=B2),C2,"Not found")
Here is another formula which will find E2 in A2:A4 and return value from B2:B4.
=XLOOKUP(E2,A2:A4,B2:B4)