K
Ken Ivins
I am trying to run an Append query from VBA code. Below is the code. I used
this in the same database to run a delete Query using this code and it works
great. I just replaced the query name. Now I get a 'Run Time Error 3061 Too
few parameters 1" .
Any idea what my problem is?
Dim Db As Database
DoCmd.SetWarnings False
Set Db = CurrentDb()
Db.Execute "qryApndIndTable", dbFailOnError
DoCmd.SetWarnings True
thanks,
Ken
this in the same database to run a delete Query using this code and it works
great. I just replaced the query name. Now I get a 'Run Time Error 3061 Too
few parameters 1" .
Any idea what my problem is?
Dim Db As Database
DoCmd.SetWarnings False
Set Db = CurrentDb()
Db.Execute "qryApndIndTable", dbFailOnError
DoCmd.SetWarnings True
thanks,
Ken