Hi
I have linked a product table into Access 2016. I want to be able to update a field called Amount by Product Code.
I created an Update query, using the linked product table, which prompts for the code and then prompts for the Amount. I then get it is updating 0 records which it should be updating 1 of course.
What I want it to do is update the Amount field based on the Product Code. The SQL code behind the query looks like the below. Any ideas what I am doing wrong, Thanks
I have linked a product table into Access 2016. I want to be able to update a field called Amount by Product Code.
I created an Update query, using the linked product table, which prompts for the code and then prompts for the Amount. I then get it is updating 0 records which it should be updating 1 of course.
What I want it to do is update the Amount field based on the Product Code. The SQL code behind the query looks like the below. Any ideas what I am doing wrong, Thanks
SQL:
UPDATE dbo_Product SET dbo_Product.Thickness = [dbo_Product].[Thickness]
WHERE (((dbo_Product.ProductCode)=[Enter Product Code]) AND ((dbo_Product.Thickness)=[Enter Thickness]));