Hi. I need help with following. I have two files. One file with "item description" and another file with bunch of "Nouns". I needed to solve the following:
Question 1. I want to be able to look into the "item description" and see if any of the words from the "Noun" exist there. If they exist I want the matching "Nouns" to be appended right next to the "Item Description".
Question 2. If multiple words from the "Noun" field exist in the "Item Description" then I want them to be concatenated together separated by Comma (,) .
I was able to solve question 1 by using Find Replace. But, I need help with question no 2.
For Example:
| | | | | |
| | Item Description | | Noun | |
| | 50mL Centrifuge Tubes, Sterile, Clear, Graduated, 25/Bag, 500/Case | | Case | |
| | 15mL Centrifuge Tubes, Sterile, Clear, Graduated, 25/Bag, 500/Case | | Tube | |
| | Micro-Adson Forceps-Fenestrated Handle/Serrated/Straight/12cm | | Bag | |
| | | | Handle | |
| | | | Forceps | |
| | | | | |
| | | | | |
| | Desired Output: | | | |
| | | | | |
| | Item Description | Noun | | |
| | 50mL Centrifuge Tubes, Sterile, Clear, Graduated, 25/Bag, 500/Case | CASE,TUBE,BAG | | |
| | 15mL Centrifuge Tubes, Sterile, Clear, Graduated, 25/Bag, 500/Case | CASE,TUBE,BAG | | |
| | Micro-Adson Forceps-Fenestrated Handle/Serrated/Straight/12cm | HANDLE,FORCEPS | | |
| | | | | |
Thanks in advance.