<>
I don't think you would.
As I said, I'd start off by eliminating the easy ones first, so first consturct a group by query which returns the number of models for each part.
Add your inventory and shippment table and join on the DeliveryNoteNumber. Now change it to a group by, pull down part from the inventory table, group on that, then pull down the model field from shipping and make that the count. Pull down the model number a second time and set it to last or first. Save the query.
Now start a new query with the inventory table. Add the query you just saved and join the two on the part number. Pull down the count and put a criteria check on it of = 1. Change the query to an update and use the model number to update the model number field in the inventory table.
Now see what's left.
JimD.