Change Date in Table with Update query

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I have a very large database with many Weekly Date entries. The problem is
that I would like to change every date in my DB to the previous day. For
instance I have a entry for the Week of 07-08-2007 and would like to change
that to 07-07-2007. I need to to this for all dates. The field is called
Week. Any help would be appreciated Thanks

Chris
 
Create an update query to update the field 'Week' with this --
DateAdd("d",-1,[Week])
 

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

Similar Threads


Back
Top