使用vba在Access 2016中使用where子句插入值

时间:2018-11-22 15:51:20

标签: vba access-vba access ms-access-2016

我正在尝试使用VBA在Access 2016中创建一个按钮来计算数量,数量的主要数字来自另一个具有以下字段的表:宽度,深度,长度_mm。

这是我正在尝试的代码:

CurrentDb.Execute "INSERT INTO pop(ID, Product, SKU, Cost_Centre,Quantity) VALUES ('" & Me.ID & "','" & Me.Product & "','" & Me.SKU & "','" & Me.Cost_Centre & "','" & Me.Quantity & "') WHERE me.Quantity =  '" & Me.Width & "' * '" & Me.Depth & "' * '" & Me.Length_mm & "';"
MsgBox "DONE"

0 个答案:

没有答案