Hello. I just tried posting this but got an error. Apologies for any possible double post.
I want to achieve the following.
This means that in order to issue an order with ITEM1, the user needs 3 x material1 and 5 x material2.
However, down the list, some materials need further raw materials to create. For instance
But not all materials have submaterials.
I want to display the total raw materials only.
So when user selects ITEM1 they should get on the same sheet the total amount of raw materials they need:
I can write a simple VLOOKUP if the item does not have any sub-materials, but i just cannot make it go all the way to the very final raw material, which is the only information my users need to see.
Note: The writing of the tables is not set in stone. I can, if needed, adjust them in any fashion.
I want to achieve the following.
- User selects the item they want in A1 (dropdown menu), called ITEM1
- In the second sheet, there are tables with the following properties such as
Code:
ITEMS MATERIALS AMOUNT
ITEM1 material1 3
ITEM1 material2 5
ITEM2 material3 1
ITEM3 material4 12
This means that in order to issue an order with ITEM1, the user needs 3 x material1 and 5 x material2.
However, down the list, some materials need further raw materials to create. For instance
Code:
ITEMS MATERIALS AMOUNT
material1 submaterial1-1 4
submaterial1-1 submaterial1-1-1 2
I want to display the total raw materials only.
So when user selects ITEM1 they should get on the same sheet the total amount of raw materials they need:
- submaterial1-1-1 x 24
- Material2 x 5
I can write a simple VLOOKUP if the item does not have any sub-materials, but i just cannot make it go all the way to the very final raw material, which is the only information my users need to see.
Note: The writing of the tables is not set in stone. I can, if needed, adjust them in any fashion.