Updating Records in a File

S

Steve

I'm wondering what the is the best way (using DAO) to
accomplish this:

Get a file, read into Access, use conditional logic on
various fields, be able to update records in those fields
according to program logic, then write and save to a new
file/table.

Hoping for some guidence on how to accomplish......
 
J

John Vinson

I'm wondering what the is the best way (using DAO) to
accomplish this:

Get a file, read into Access, use conditional logic on
various fields, be able to update records in those fields
according to program logic, then write and save to a new
file/table.

Hoping for some guidence on how to accomplish......

A "file"? as in a comma-separated-values text file, a Table in some
other database, a dBase table, or what?

If it's a text file, I'd use the TransferDatabase method to import it
(assuming that it's in a predictable and orderly format) into a
pre-built Table; run your update queries; and then use
TransferDatabase again to export it back to (the same or a new) text.
 

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