Hello,
I have this set of data:
<colgroup><col><col><col><col></colgroup><tbody>
</tbody>
I need function which does this:
- add in column C all keywords from column B which are found in column A. Separate this keywords in column C by comma.
I have this function: =IF(ISNUMBER(SEARCH($B$2;OFFSET(A2;0;0)));$B$2;"")
But do not know, hot to loop it.
I need to check each row in column A againts all keywords in column B.
Thank you in advance for any help.
PR
I have this set of data:
A | B | C | |
1 | Phrases | Keywords | Result |
2 | cruise from USA to Cuba | USA | cruise, USA, Cuba |
3 | luxury cruise Cuba | Cuba | cruise, Cuba |
4 | holiday Cuba | Cruise | Cuba |
<colgroup><col><col><col><col></colgroup><tbody>
</tbody>
I need function which does this:
- add in column C all keywords from column B which are found in column A. Separate this keywords in column C by comma.
I have this function: =IF(ISNUMBER(SEARCH($B$2;OFFSET(A2;0;0)));$B$2;"")
But do not know, hot to loop it.
I need to check each row in column A againts all keywords in column B.
Thank you in advance for any help.
PR