rooirokbokkie
New Member
- Joined
- Aug 21, 2014
- Messages
- 19
This problem has me stumped because I can't figure out which function to use. This is a basic problem where I have a group of people who were supposed to bring items from a list/array called "Item List" for a cooking class. I need an easy way to compare what they "Brought" to the "Item List" for each individual so I can quickly see what I'll need to give them so they can participate. The flat structure of the data is tripping me up.
I'd prefer non-VBA answers, but VBA answers are always welcome since they help me learn as well. Thanks in advance.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Brought[/TD]
[TD]Item List[/TD]
[/TR]
[TR]
[TD]Pete[/TD]
[TD]Eggs[/TD]
[TD]Egg[/TD]
[/TR]
[TR]
[TD]Pete[/TD]
[TD]Flour[/TD]
[TD]Milk[/TD]
[/TR]
[TR]
[TD]Jane[/TD]
[TD]Milk[/TD]
[TD]Flour[/TD]
[/TR]
[TR]
[TD]Jane[/TD]
[TD]Egg[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Jane[/TD]
[TD]Flour[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]Flour[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Mary[/TD]
[TD]Egg[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Mary[/TD]
[TD]Milk[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Mary[/TD]
[TD]Milk[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I'd prefer non-VBA answers, but VBA answers are always welcome since they help me learn as well. Thanks in advance.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Brought[/TD]
[TD]Item List[/TD]
[/TR]
[TR]
[TD]Pete[/TD]
[TD]Eggs[/TD]
[TD]Egg[/TD]
[/TR]
[TR]
[TD]Pete[/TD]
[TD]Flour[/TD]
[TD]Milk[/TD]
[/TR]
[TR]
[TD]Jane[/TD]
[TD]Milk[/TD]
[TD]Flour[/TD]
[/TR]
[TR]
[TD]Jane[/TD]
[TD]Egg[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Jane[/TD]
[TD]Flour[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]Flour[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Mary[/TD]
[TD]Egg[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Mary[/TD]
[TD]Milk[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Mary[/TD]
[TD]Milk[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Last edited: