SOLVED

Find the words automatically please help!!

Brass Contributor

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, it's BARSAN in first sheet, I want to find automatically the rows including BARSAN GLOBAL(or sth like that) in second sheet. I can't do it simply with ctrl+f method because there are lots of rows and words in my real excel file. If anybody knows a way makes it possible with a macro or formula please tell me.. 

 

example1.JPGexample2.JPG

3 Replies

Hi Anil,

 

That could be array formula

=IFNA(MATCH(1,INDEX(SEARCH(A1,Sheet2!$A$1:$A$10),0,0),0),"")

 

Sergei first thanks,

 

Is it possible to see the original word(such as C column) in sheet2 instead of its row number?

 

 example_photo.JPG

 

best response confirmed by Anıl Adaş (Brass Contributor)
Solution

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)

 

 

1 best response

Accepted Solutions
best response confirmed by Anıl Adaş (Brass Contributor)
Solution

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)

 

 

View solution in original post