G
Guest
I'm getting an Error 3061: Too few parameters. Expected 2. I can't see why
it's doing this. Can anyone help? I looked at the posts but can't find a
solution. Here's my code:
Dim db As DAO.Database
Set db = CurrentDb
Dim sql As String
sql = "INSERT INTO [Sol_SOQtyToShip] "
sql = sql & " SELECT * "
sql = sql & " FROM [qrySol_SOShipQty]; "
db.Execute " DELETE * FROM [Sol_SOQtyToShip];"
db.Execute sql, DB_FAILONERROR
db.Close
Me.Refresh
Any pointers is greatly appreciated.
it's doing this. Can anyone help? I looked at the posts but can't find a
solution. Here's my code:
Dim db As DAO.Database
Set db = CurrentDb
Dim sql As String
sql = "INSERT INTO [Sol_SOQtyToShip] "
sql = sql & " SELECT * "
sql = sql & " FROM [qrySol_SOShipQty]; "
db.Execute " DELETE * FROM [Sol_SOQtyToShip];"
db.Execute sql, DB_FAILONERROR
db.Close
Me.Refresh
Any pointers is greatly appreciated.