My Task is to Summarize the Ingredients By Categories. I have two Worksheets/Tables. The First lists the Categories and their respective Recipes
CategoryRecipe
[TABLE="width: 500"]
<tbody>[TR]
[TD]Category (A)[/TD]
[TD]Recipe (B)[/TD]
[/TR]
[TR]
[TD]Cat1[/TD]
[TD]RecA[/TD]
[/TR]
[TR]
[TD]Cat1[/TD]
[TD]RecB[/TD]
[/TR]
[TR]
[TD]Cat2[/TD]
[TD]RecD[/TD]
[/TR]
[TR]
[TD]Cat2[/TD]
[TD]RecC[/TD]
[/TR]
[TR]
[TD]Cat3[/TD]
[TD]RecA[/TD]
[/TR]
[TR]
[TD]Cat3[/TD]
[TD]RecD[/TD]
[/TR]
</tbody>[/TABLE]
Next is the Recipe x Ingedient Table
RecipeIngredient
[TABLE="width: 500"]
<tbody>[TR]
[TD]Recipe (A)[/TD]
[TD]Ing1 (B)
[/TD]
[TD]Ing2 (C)
[/TD]
[TD]Ing3 (D)
[/TD]
[TD]Ing4 (E)
[/TD]
[/TR]
[TR]
[TD]RecA[/TD]
[TD]X[/TD]
[TD][/TD]
[TD]X[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]RecB[/TD]
[TD][/TD]
[TD]X[/TD]
[TD]X[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]RecC[/TD]
[TD]X[/TD]
[TD]X[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]RecD[/TD]
[TD][/TD]
[TD][/TD]
[TD]X[/TD]
[TD]X[/TD]
[/TR]
</tbody>[/TABLE]
I need a table:
CategoryIngredient on a 3rd sheet
[TABLE="width: 500"]
<tbody>[TR]
[TD]Category[/TD]
[TD]Ing1[/TD]
[TD]Ing2[/TD]
[TD]Ing3[/TD]
[TD]Ing4[/TD]
[/TR]
[TR]
[TD]Category 1[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Category 2[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Category 3[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I know this involves usings SUMIFS, LOOKUP, and possibly LEN since the Ingredients values are not numeric, but I'm really having trouble getting anywhere close to what I need from the examples of all those functions so any assistance would be greatly appreciated.
CategoryRecipe
[TABLE="width: 500"]
<tbody>[TR]
[TD]Category (A)[/TD]
[TD]Recipe (B)[/TD]
[/TR]
[TR]
[TD]Cat1[/TD]
[TD]RecA[/TD]
[/TR]
[TR]
[TD]Cat1[/TD]
[TD]RecB[/TD]
[/TR]
[TR]
[TD]Cat2[/TD]
[TD]RecD[/TD]
[/TR]
[TR]
[TD]Cat2[/TD]
[TD]RecC[/TD]
[/TR]
[TR]
[TD]Cat3[/TD]
[TD]RecA[/TD]
[/TR]
[TR]
[TD]Cat3[/TD]
[TD]RecD[/TD]
[/TR]
</tbody>[/TABLE]
Next is the Recipe x Ingedient Table
RecipeIngredient
[TABLE="width: 500"]
<tbody>[TR]
[TD]Recipe (A)[/TD]
[TD]Ing1 (B)
[/TD]
[TD]Ing2 (C)
[/TD]
[TD]Ing3 (D)
[/TD]
[TD]Ing4 (E)
[/TD]
[/TR]
[TR]
[TD]RecA[/TD]
[TD]X[/TD]
[TD][/TD]
[TD]X[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]RecB[/TD]
[TD][/TD]
[TD]X[/TD]
[TD]X[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]RecC[/TD]
[TD]X[/TD]
[TD]X[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]RecD[/TD]
[TD][/TD]
[TD][/TD]
[TD]X[/TD]
[TD]X[/TD]
[/TR]
</tbody>[/TABLE]
I need a table:
CategoryIngredient on a 3rd sheet
[TABLE="width: 500"]
<tbody>[TR]
[TD]Category[/TD]
[TD]Ing1[/TD]
[TD]Ing2[/TD]
[TD]Ing3[/TD]
[TD]Ing4[/TD]
[/TR]
[TR]
[TD]Category 1[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Category 2[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Category 3[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I know this involves usings SUMIFS, LOOKUP, and possibly LEN since the Ingredients values are not numeric, but I'm really having trouble getting anywhere close to what I need from the examples of all those functions so any assistance would be greatly appreciated.