Match partial text string in one sheet to another text string in another sheet
Solved/Closed
Related:
- If cell contains partial text then return value in another cell
- If cell contains partial text - Best answers
- Excel if contains partial text - Best answers
- If a cell has text then return value ✓ - Excel Forum
- If cell contains text then return value multiple conditions ✓ - Excel Forum
- Based on the cell values in cells b77 ✓ - Excel Forum
- Conditional formatting if cell contains text ✓ - Excel Forum
- What function can automatically return the value in cell c77 ✓ - Excel Forum
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Contributor
Last seen
December 27, 2022
555
Nov 5, 2020 at 11:25 AM
Nov 5, 2020 at 11:25 AM
Hi Santos,
Give the following formula a try:
=IF(ISERROR(VLOOKUP("*" & A1 & "*",Sheet2!$A$1:$A$4,1,0)),"x",VLOOKUP("*" & A1 & "*",Sheet2!$A$1:$A$4,1,0))
Best regards,
Trowa
Give the following formula a try:
=IF(ISERROR(VLOOKUP("*" & A1 & "*",Sheet2!$A$1:$A$4,1,0)),"x",VLOOKUP("*" & A1 & "*",Sheet2!$A$1:$A$4,1,0))
Best regards,
Trowa
Nov 5, 2020 at 12:02 PM
Thank you very much!