I have a dataset like this, and I'm looking for a way to add a category, based on what kind of product I have.
Can I search for Apple
+ Orange
and assign them to a category named Fruits
, and similar with Milk
+ Wine
and assign them to another category, named Drinks
?
| Item | Category |
|-------|----------|
| Apple | | <-- Fruits
| Orange| | <-- Fruits
| Milk | | <-- Drinks
| Wine | | <-- Drinks
Or maybe a simpler method: find any rows containing Milk
and assign them to category Drinks
?