Forum Discussion
Anıl Adaş
Oct 18, 2018Brass Contributor
Find the words automatically please help!!
Hi, I have words in the excel sheet attached and I need to find the rows including these words in a different excel sheet. At the pictures below, I chose a random word(BARSAN). For example, ...
- Oct 18, 2018
Anil, when it'll be
=IFNA(INDEX(Sheet2!$A$1:$A$10,MATCH(1,INDEX(SEARCH(A1,Sheet2!$A$1:$A$10),0,0),0)),"")
(regular formula)
SergeiBaklan
Oct 18, 2018Diamond Contributor
Hi Anil,
That could be array formula
=IFNA(MATCH(1,INDEX(SEARCH(A1,Sheet2!$A$1:$A$10),0,0),0),"")
Anıl Adaş
Oct 18, 2018Brass Contributor
Sergei first thanks,
Is it possible to see the original word(such as C column) in sheet2 instead of its row number?