HI,
First let me say my access knowledge is limited so bare with me. I have a simple 1 table DB that I am trying to import a excel sheet into.
Here is a screen shot of the DB.
and here is a shot of the excel sheet.
Both are lists of streets. The excel sheet is an updated list with all the streets in the DB plus some new ones. I want to import the excel sheet but exclude during the import all the streets that are already present in the db.
I have imported the excel sheet into a 2nd table called Streets and have tried to run an append query with no luck.
Here is the query I tried to use.
First let me say my access knowledge is limited so bare with me. I have a simple 1 table DB that I am trying to import a excel sheet into.
Here is a screen shot of the DB.

and here is a shot of the excel sheet.

Both are lists of streets. The excel sheet is an updated list with all the streets in the DB plus some new ones. I want to import the excel sheet but exclude during the import all the streets that are already present in the db.
I have imported the excel sheet into a 2nd table called Streets and have tried to run an append query with no luck.
Here is the query I tried to use.
If anyone could be of help it would be great.INSERT INTO msag (Street Name)
SELECT NewStreet Name FROM streets
WHERE NewStreet Name not in (SELECT msag.Street Name FROM msag);