I'm using the update query below. This query will run, but it does not perform the correct update. The way the join properties are currently setup, all records from both tables where the flitchnum field is equal should update. However, whenever I have several records with one flitchnum only the first record with a matching flitchnum field will update. Subsequent records with a matching flitchnum field will not update and the query moves on to update the next matching flitchnum field.
UPDATE VeneerInventory INNER JOIN tblBundle ON VeneerInventory.FlitchNum = tblBundle.Flitchnum SET VeneerInventory.InStock = [tblbundle.BundleWidth]*[tblbundle.BundleLength]*[tblbundle.sheetcount]/144
WHERE (((VeneerInventory.completed)=False));
Please let me know if I've provided adequate information. How can I fix this? Thanks.
--
Mike
UPDATE VeneerInventory INNER JOIN tblBundle ON VeneerInventory.FlitchNum = tblBundle.Flitchnum SET VeneerInventory.InStock = [tblbundle.BundleWidth]*[tblbundle.BundleLength]*[tblbundle.sheetcount]/144
WHERE (((VeneerInventory.completed)=False));
Please let me know if I've provided adequate information. How can I fix this? Thanks.
--
Mike