I'm trying to find a solution to do a lookup function. I have a lookup table containing around 50 rows of words/phrases which need to be checked to a file containing around 300 survey responses open end answers. I initially used the find and replace tools but it will only find the first match of the lookup table row in the comment and stop. I want for each of the survey response open end all the 50 words compared to find a match. Please let me know if there is any easy way to handle this.
ex :
Lookup table :
1.BAT
2.MAT
3.CAT
4.SIT
Comments:
1.I have a bat with my cat
2.I sit on a mat with my bat
Current output using find and replace too (I used option append fields to record)
1.I have a bat with my cat -BAT
2.I sit on a mat with my bat -SIT
Expected output:
1.I have a bat with my cat -BAT,CAT
2.I sit on a mat with my bat -SIT,MAT,BAT
Thank you in advance for any help!