Hello All,
I'm really new to this, so sorry ahead of time. Trying to get data to be posted into a table along with other information that's already being put into there.
I'm using access 2003.
After hitting to post I get the error message : Run-time error '3346'
Here is the code:
I have added the column for redeem into closingsales already and checked other queries to try and find out if there's something I'm missing.
I'm really new to this, so sorry ahead of time. Trying to get data to be posted into a table along with other information that's already being put into there.
I'm using access 2003.
After hitting to post I get the error message : Run-time error '3346'
Here is the code:
Code:
If Me.redeem > 0 Then
DoCmd.RunSQL "INSERT INTO closingsales ( redeem ) " & _
"SELECT #" & startdate & "# AS Expr1, " & _
Me.redeem & " AS Expr5"
End If
Comment