Text File - Capturing import Date/Time

K

Kirk P.

I have a macro that imports several tab delimited text files into various
tables. I would like to capture the date/time of the import in these tables.
Any good way to do this?
 
J

John Nurick

Hi Kirk,

Here's one way. I assume you have a date/time field in the tables
already; I'll call it DateImported.

For each table, create an update query that updates DateImported to
Now() where DateImported Is Null.

Then have your macro run the appropriate query after each import.
 

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