Hello
I am trying to reset two column in a access table and set them to zero.
I am wrote this little bit of code
it work for the rebates cloumn but not rebates %
any help will be great
thanks
Sub Command102_Click()
Dim strSQL As String
strSQL = "UPDATE pricing SET pricing.rebates = 0;"
strSQL = "UPDATE pricing SET pricing.rebates % = 0;"
DoCmd.RunSQL strSQL
End Sub
I am trying to reset two column in a access table and set them to zero.
I am wrote this little bit of code
it work for the rebates cloumn but not rebates %
any help will be great
thanks
Sub Command102_Click()
Dim strSQL As String
strSQL = "UPDATE pricing SET pricing.rebates = 0;"
strSQL = "UPDATE pricing SET pricing.rebates % = 0;"
DoCmd.RunSQL strSQL
End Sub