I've been banging my head on this one for a while so any outside ideas would be more than welcome!
We have three tables.
- Inventory: contains list of materials and their initial amounts. Each material is treated as a batch material so once it runs out, it's permanently out.
- Recipes: As the name suggests, contains recipes that can contain multiple ingredients. For each ingredient amount (or rather ratio of ingredients...) and few other details are given. Lookup fields bring some info from inventory for each raw material.
- Production mix: A right recipe is chosen and how much total material is wanted to be produced. Formula fields then calculate how much of each ingredient is needed. lookup fields bring the names of raw materials from recipe tables.
My problem is that rollup does not seem to work over three tables . Basically I would need to take the information of how much of each ingredient the production mix uses and then get the info back to the inventory row for each ingredient. However because I have the recipe table in between, rollup seems to get confused. Any ideas?
