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
 
Back
Top