Hi all,
Sorry for this, however I seem to be chasing my own tail trying to solve my issue.
I am creating a database system, which among other things will include a simple stock / inventory function.
Among other tables I have 3 parts tables:
Raw materials
Fittings / assemblies
Manufactured Items
Each has different fields, but each has two particular fields in common
PartNumber
ItemValue
I have a Union Query "AllPartsQuery", to pull all partNumber's and ItemValues into a single "List" (Query)
This is used to generate the combo box used to select the PartNumber entry in the Stock Table PartNumber Field.
Among other fields the Stock Table has the current STOCKQTY.
At a future date, say stock taking, I will wish to run a report / query / form as appropriate to show the value of each line item, and of course a total stock value.
I seem unable to get a method to make this work, I don't want (if avoidable, which is what I am trying to do) to put a Item value in the STOCK Table, I want to pull it from the appropriate Parts table or the "AllPartsQuery".
I have tried making relationships, using a joining table, I have tried using the "AllPartsQuery" to utilise the ItemValue, but I seem to keep failing, one thing or another doesnt work.
What should be the "normal / standard" way of doing this?
I don't really want to have ALL product types (Raw materials / fittings / manufactured items) in the same table, as there is very little shared between these items,
other than they all have a unique part number and each has a unit value.
Hope this isn't too daft a requirement, but I am not getting anywhere.
Many thanks in advance for any assistance, or pointing to an appropriate site / video.
Regards
Nigel