I'm trying to use the SEARCH function in Excel in order to find all the times that a word appear.
I'm using right now this:
=SI.ERROR(SI.ERROR(BUSCAR(D2466;Sheet1!P:P;Sheet1!B:B);
BUSCAR(D2466;Sheet1!T:T;Sheet1!B:B)); "NO")
Not Sure if this is in English version:
=IFERROR(IFERROR(SEARCH(D2466;Sheet1!P:P;Sheet1!B:B);
SEARCH(D2466;Sheet1!T:T;Sheet1!B:B)); "NO")
`sheet1`
A B C
1 Basic Case1 Return1
2 Basic Case1 Return2
3 Basic Case1 Return3
`sheet2`
A B C
1 find1 Case1 =FUNCTION
2 find2 Case2 =FUNCTION
3 find3 Case3 =FUNCTION
=IFERROR(IFERROR(SEARCH(B1;sheet1!B:B;sheet1!C:C);
SEARCH(B1;sheet1!A:A;sheet1!B:B)); "NO")
(SEARCH for word Case1 and for each match, return the value in C column)
Only appear the value: Return1
Which works, but only returns one row, and I have to record all.