Hi all,
I have a database with 4 append queries. I import data to a data table, then the append query is written to pull anything from that table that has a null value in the specified column. Currently 1 of the 4 queries is not working but the code and for the one that is no longer working looks exactly like the other 3 that are working. I will add that all 4 were working until last week. The data is still importing to the correct table and the query is set to pull from that table but when I append it says there are 0 records. I have gone section by section to make sure the all fields are labeled the same as they are listed in the code. Any suggestions of what else to look at to correct this query? An example of the code is listed below,
INSERT INTO TableName (field names on this table that data will be imported into)
SELECT TableName.fieldname, TableName.fieldname
FROM TableName
WHERE (((TableName.fieldname) is Null));