MattSavage
IS-IT--Management
I have an Inventory database, and I have created an update query to add new inventory to a quantity field. Using a parameter query, the user is asked to enter the quantity to add, then asked to enter the Product number. Here is the query:
UPDATE Products SET Products.Plant_Inventory = [Plant_Inventory]+[Amount to add:]
WHERE (((Products.PHI_Number)=[PHI Number:]));
I would like the user to be able to enter the Product ID first, then enter the quantity to add. Is this possible to do without using stored procedures or VBA?
UPDATE Products SET Products.Plant_Inventory = [Plant_Inventory]+[Amount to add:]
WHERE (((Products.PHI_Number)=[PHI Number:]));
I would like the user to be able to enter the Product ID first, then enter the quantity to add. Is this possible to do without using stored procedures or VBA?