D
DT
I have a form that has a combo box that a user can select a part number from.
There is also a text area that they can enter in the quanity that they would
like to add or delete from inventory. When they click on submit it runs a
query.
UPDATE Inventory SET Inventory.[Level] =
[Level]+[Forms]![frmInventoryAddDelete]![text10]
WHERE Inventory.PartNum=[Forms]![frmInventoryAddDelete]![combo14];
Nothing updates when I have the query like this. If I limit the where to
one record. It works fine. But I would like the query to find the current
selected PartNum from the combo box. Thanks for the help
There is also a text area that they can enter in the quanity that they would
like to add or delete from inventory. When they click on submit it runs a
query.
UPDATE Inventory SET Inventory.[Level] =
[Level]+[Forms]![frmInventoryAddDelete]![text10]
WHERE Inventory.PartNum=[Forms]![frmInventoryAddDelete]![combo14];
Nothing updates when I have the query like this. If I limit the where to
one record. It works fine. But I would like the query to find the current
selected PartNum from the combo box. Thanks for the help