Match partial text string in one sheet to another text string in another sheet
Solved/Closed
Related:
- Vlookup if cell contains partial text
- If cell contains partial text then return value in another cell - Best answers
- Excel if cell contains partial text then return value in another cell - Best answers
- If cell contains (multiple text criteria) then return (corresponding text criteria) ✓ - Excel Forum
- Excel conditional formatting if another cell contains specific text ✓ - Excel Forum
- Lookup partial text contained in cell range - Office Software Forum
- Count if cell contains number - Excel Forum
- Highlight cell if another cell contains text ✓ - Excel Forum
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
January 16, 2023
549
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!