I have two different spread sheets with categories and I want to pull the category ID of sheet B into sheet A. While they have similar names they are not identical so I cannot do a simple VLOOKUP or other similar method. What I want to do is search if any part of the category name in sheet A is found in sheet B then pull in the corresponding category ID
Example:
Sheet A
[TABLE="class: outer_border, width: 272"]
<tbody>[TR]
[TD]Category[/TD]
[TD]CategoryID[/TD]
[/TR]
[TR]
[TD]Skin Care[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]First Aid and Healing[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Moisturizers[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Sheet B
[TABLE="class: outer_border, width: 258"]
<tbody>[TR]
[TD]Category[/TD]
[TD]CategoryID[/TD]
[/TR]
[TR]
[TD]Hair & Skin Care[/TD]
[TD="align: right"]13908[/TD]
[/TR]
[TR]
[TD]Other First Aid[/TD]
[TD="align: right"]11779[/TD]
[/TR]
[TR]
[TD]Body Lotions & Moisturizers[/TD]
[TD="align: right"]11841[/TD]
[/TR]
</tbody>[/TABLE]
Example:
Sheet A
[TABLE="class: outer_border, width: 272"]
<tbody>[TR]
[TD]Category[/TD]
[TD]CategoryID[/TD]
[/TR]
[TR]
[TD]Skin Care[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]First Aid and Healing[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Moisturizers[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Sheet B
[TABLE="class: outer_border, width: 258"]
<tbody>[TR]
[TD]Category[/TD]
[TD]CategoryID[/TD]
[/TR]
[TR]
[TD]Hair & Skin Care[/TD]
[TD="align: right"]13908[/TD]
[/TR]
[TR]
[TD]Other First Aid[/TD]
[TD="align: right"]11779[/TD]
[/TR]
[TR]
[TD]Body Lotions & Moisturizers[/TD]
[TD="align: right"]11841[/TD]
[/TR]
</tbody>[/TABLE]