Add New Fields and Then Update Existing Records

M

Mark Schnell

I am supplied with a monthly text-delimited data file of
new records that I import into an existing data base.
Each record in teh data base contains a unique ID number
field. At my request, subsequent reports will include
additional data fields.

In addition to the expanded report format, I have received
a text-delimited file containing the unique ID numbers
from the older records with the corresponding new field
data.

I have added the new fields to my data base. How do I
append these additional data fields into my existing data
base?

Thanks, Mark
 
V

Van T. Dinh

You can link your delimited text file, especially CSV as a linked Table to
your database then you can use an Update Query to update the blank/Null
values of the new Field of your existing Table with the values from your
linked Table.

Alternatively, you can import the file to a temporary Table and use the same
Update Query.

Once you finish the update, you can delete the linked or temporary Table as
appropriate.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top