Stormrider83
Computer Science Student
- Local time
- Today, 16:40
- Joined
- Jul 16, 2008
- Messages
- 26
Hi,
I simply want to copy the field Qty from Qry_Paint_Order_Parts to the field Qty in Tbl_Paint_Order_Parts where the records are joined by Part_No in both tables
I use the following code:
strSQL = ""
strSQL = strSQL & " UPDATE Tbl_Paint_Order_Parts "
strSQL = strSQL & " SET Qty = [Qry_Paint_Order_Parts].[Qty]"
CurrentDb.Execute strSQL
but get the error - too few parameters expected one.
Can anyone help?
I simply want to copy the field Qty from Qry_Paint_Order_Parts to the field Qty in Tbl_Paint_Order_Parts where the records are joined by Part_No in both tables
I use the following code:
strSQL = ""
strSQL = strSQL & " UPDATE Tbl_Paint_Order_Parts "
strSQL = strSQL & " SET Qty = [Qry_Paint_Order_Parts].[Qty]"
CurrentDb.Execute strSQL
but get the error - too few parameters expected one.
Can anyone help?
