Append date to table

y2k

Registered User.
Local time
Today, 16:50
Joined
Mar 11, 2002
Messages
36
I have some Make Table Querys which are run every day. Is there a piece of code that I can put in to add an extra column which would have today's date in it every day?

Thanks for your help
 
You can do this in your make table query and then an update query.

  • In design view of your make-table query, in a new column in the design grid, enter your new field, followed by double quote marks ie: 'TodDate': "" - then run the query. This will add a new column with blank entries. (Don't call it 'Date' as Access will get confused.
  • In a new update query, enter your new field into the design grid.
  • In the 'Update to' row, enter 'Date()'.
  • Run this query.
  • You can then pop both queries into a macro so you won't have to run both separately.

HTH

Ally


[This message has been edited by Ally (edited 04-08-2002).]
 
You don't need to do this in two steps. Just adding the new date column with a value of Date() will be sufficient. Add a new column to your make table query:

MyNewDate
biggrin.gif
ate()

or if you want date and time then,

MyNewDate:Now()
 

Users who are viewing this thread

Back
Top Bottom