automatic entry of previous record

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

My data base is a record of bank deposits by date. I update the table using a
form and I would like to automatically enter the next date by adding one day
to the previous record upon new record creation. Is ther an easy way to do
this ??
 
How many entries do you make in a day? You might be able to set the Default
Value property of the text box to something like:
=DMax("[Date Field]","tblNoNameProvided") + 1
 

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

Back
Top