Forum Discussion
Anıl Adaş
Jul 10, 2018Brass Contributor
Find words automatically in an Excel sheet
I have an excel sheet including many words. Is it possible to see automotically these words including or not in a different excel file. For example, The words in Sheet 1 are marked automatica...
- 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.
Haytham Amairah
Jul 10, 2018Silver Contributor
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
Example is very useful for me.
Thanks a lot..