Hello,
I'm trying to essentially do something similar to a vlookup, but instead of it just returning a single result, I want to see all results. I would like to have each result show in a different column.
Here's what I have in mind:
Basic Data Set
[TABLE="width: 128"]
<colgroup><col width="64" span="2" style="width:48pt"> </colgroup><tbody>[TR]
[TD="class: xl63, width: 64"]Category[/TD]
[TD="class: xl63, width: 64"]Item[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Banana[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Apple[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Peach[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Raspberry[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Grape[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Orange[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Grapefruit[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Celery[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Tomato[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Cauliflower[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Potato[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Brussel Sprouts[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Brocoli[/TD]
[/TR]
[TR]
[TD]Drink[/TD]
[TD]Soda[/TD]
[/TR]
[TR]
[TD]Drink[/TD]
[TD]Water[/TD]
[/TR]
[TR]
[TD]Drink[/TD]
[TD]OJ[/TD]
[/TR]
[TR]
[TD]Drink[/TD]
[TD]Milk
[/TD]
[/TR]
</tbody>[/TABLE]
I would like it to display the values in this format:
[TABLE="width: 566"]
<colgroup><col span="3"><col><col><col><col span="2"></colgroup><tbody>[TR]
[TD][/TD]
[TD]Value 1[/TD]
[TD]Value 2[/TD]
[TD]Value 3[/TD]
[TD]Value 4[/TD]
[TD]Value 5[/TD]
[TD]Value 6[/TD]
[TD]Value 7[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Banana[/TD]
[TD]Apple[/TD]
[TD]Peach[/TD]
[TD]Raspberry[/TD]
[TD]Grape[/TD]
[TD]Orange[/TD]
[TD]Grapefruit[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Celery[/TD]
[TD]Tomato[/TD]
[TD]Cauliflower[/TD]
[TD]Potato[/TD]
[TD]Brussel Sprouts[/TD]
[TD]Brocoli[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Drink[/TD]
[TD]Soda[/TD]
[TD]Water[/TD]
[TD]OJ[/TD]
[TD]Milk[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I have found a variety of solutions online incorporating everything from array formulas using Index and Small functions and a non array formula using Index and Aggregate. I CANNOT get any of these solutions to work for me. I have been at this for HOURS and am super frustrated.
If anyone has a solution it would REALLY help me out a ton.
Thanks,
Kristie
I'm trying to essentially do something similar to a vlookup, but instead of it just returning a single result, I want to see all results. I would like to have each result show in a different column.
Here's what I have in mind:
Basic Data Set
[TABLE="width: 128"]
<colgroup><col width="64" span="2" style="width:48pt"> </colgroup><tbody>[TR]
[TD="class: xl63, width: 64"]Category[/TD]
[TD="class: xl63, width: 64"]Item[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Banana[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Apple[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Peach[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Raspberry[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Grape[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Orange[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Grapefruit[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Celery[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Tomato[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Cauliflower[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Potato[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Brussel Sprouts[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Brocoli[/TD]
[/TR]
[TR]
[TD]Drink[/TD]
[TD]Soda[/TD]
[/TR]
[TR]
[TD]Drink[/TD]
[TD]Water[/TD]
[/TR]
[TR]
[TD]Drink[/TD]
[TD]OJ[/TD]
[/TR]
[TR]
[TD]Drink[/TD]
[TD]Milk
[/TD]
[/TR]
</tbody>[/TABLE]
I would like it to display the values in this format:
[TABLE="width: 566"]
<colgroup><col span="3"><col><col><col><col span="2"></colgroup><tbody>[TR]
[TD][/TD]
[TD]Value 1[/TD]
[TD]Value 2[/TD]
[TD]Value 3[/TD]
[TD]Value 4[/TD]
[TD]Value 5[/TD]
[TD]Value 6[/TD]
[TD]Value 7[/TD]
[/TR]
[TR]
[TD]Fruit[/TD]
[TD]Banana[/TD]
[TD]Apple[/TD]
[TD]Peach[/TD]
[TD]Raspberry[/TD]
[TD]Grape[/TD]
[TD]Orange[/TD]
[TD]Grapefruit[/TD]
[/TR]
[TR]
[TD]Veggie[/TD]
[TD]Celery[/TD]
[TD]Tomato[/TD]
[TD]Cauliflower[/TD]
[TD]Potato[/TD]
[TD]Brussel Sprouts[/TD]
[TD]Brocoli[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Drink[/TD]
[TD]Soda[/TD]
[TD]Water[/TD]
[TD]OJ[/TD]
[TD]Milk[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I have found a variety of solutions online incorporating everything from array formulas using Index and Small functions and a non array formula using Index and Aggregate. I CANNOT get any of these solutions to work for me. I have been at this for HOURS and am super frustrated.
If anyone has a solution it would REALLY help me out a ton.
Thanks,
Kristie