J
Jochem Davids
I'm trying to run a DELETE sql statement, based on two ComboBoxes.
CurrentDb.Execute ("DELETE FROM tblOne WHERE tblTwo.[Id] <> " & cboId & "
AND tblname.[name] <> " & cboName & " "), dbFailOnError
Both seperate they work fine...This AND statement will not work?!
I also tried && ... What should I use?
CurrentDb.Execute ("DELETE FROM tblOne WHERE tblTwo.[Id] <> " & cboId & "
AND tblname.[name] <> " & cboName & " "), dbFailOnError
Both seperate they work fine...This AND statement will not work?!
I also tried && ... What should I use?