Hi, I'm working on using access to store all of my recipies. I created three tables:
tblRecipes
>RecipeID(pk)
>RecipeName
>Directions
tblIngredients
>IngredientID(pk)
>IngredientName
tblRecIng
>RecIngID(pk)
>RecipeID(fk)
>IngredientID(fk)
because I can have multiple ingredients in each recipe I would like to seach for a recipe that contains certain ingredients. I can do this if I only want to look for one ingredient, but how do I set up my criteria for searching only recipes that contain a specified number of ingrients.
Example: I only want to display recipies that contain 'onion' & 'carrots' & 'potatos'