I have a simple Append query, previously working in '97 that now I've converted to 2003, won't work. If any record now has a field that contains a blank ("") (they're text fields), and they all do, the record won't be appended. The 'help' implies that this should only be the case if the field I'm trying to write a 'null' to is the primary key, and that isn't the case. Can't find the solution on Technet. Any help appreciated.
Query in VBA is (tried it as an actual query as well):
strSQL = "INSERT INTO TblData SELECT tbl" & strLCN & "Updated.* FROM tbl" & strLCN & "Updated" & _
" ORDER BY Stocknumber"
DoCmd.RunSQL strSQL
(sorry if variables confuse the picture)
Query in VBA is (tried it as an actual query as well):
strSQL = "INSERT INTO TblData SELECT tbl" & strLCN & "Updated.* FROM tbl" & strLCN & "Updated" & _
" ORDER BY Stocknumber"
DoCmd.RunSQL strSQL
(sorry if variables confuse the picture)