我正在尝试使用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"