Forum Discussion
Find words automatically in an Excel sheet
- Jul 11, 2018
Hi,
You can do this by modifying the formula this way:
=AND(ISNUMBER(MATCH("*"&A1&"*",Sheet1!$A:$A,0)),NOT(ISBLANK(A1)))
So that it will match the word in sheet 2 with the word in sheet 1 even if the word in sheet 2 is included inside any cell of column A in sheet 1.
Hi,
You have to use the Conditional Formatting by using the below formula in https://support.office.com/en-us/article/use-formulas-with-conditional-formatting-fed60dfa-1d3f-4e13-9ecb-f1951ff89d7f.
=ISNUMBER(MATCH(A1,Sheet1!$A:$A,0))
For an example, please find the attached workbook.
Regards
- Anıl AdaşJul 10, 2018Brass Contributor
Is it possible to use this formula like below? For example; Peugeot Motor Company is written in sheet1 but there is only Peugeot written in sheet2, it can be a formula works at that situation?
- Haytham AmairahJul 11, 2018Silver Contributor
Hi,
You can do this by modifying the formula this way:
=AND(ISNUMBER(MATCH("*"&A1&"*",Sheet1!$A:$A,0)),NOT(ISBLANK(A1)))
So that it will match the word in sheet 2 with the word in sheet 1 even if the word in sheet 2 is included inside any cell of column A in sheet 1.
- Anıl AdaşJul 10, 2018Brass Contributor
Example is very useful for me.
Thanks a lot..