You may want to investigate the DoCmd.TransferDatabase command in
Access Help. You can extract the original account balance from the
existing data, store it in a variable, read the text file into that
same original table, and then replace the account balance field's value
with it's value plus the original account balance value you stored
earlier.
pietlinden@hotmail.com - 17 Dec 2005 04:12 GMT
Of course, if the data is normalized, he can run the import as you
suggest, and then use a single update query. Maybe wrapping the whole
thing in a transaction might be a good idea, because otherwise, he
could have a partially successful run of the procedure, and it would
invalidate his data.