Ok I have a subform which I use to generate the next service date by putting
the number of days to the next service date this creates a record in the
table Next service date So when I create the next record I wish this record
next service date to fill in on the next record service date I.E. Same table
but next record could you give me an example. Thanks for your help.
Automatically generating records in this way can cause no end of grief. The
"next service date" can be calculated on the form in each existing record by
adding a textbox with it's "Control Source" property set to something like this:
=DateAdd("d", [NumberOfDays],[DateField])
Where "NumberOfDays" is the field that holds the number of days to next service
and "DateField" is the field that holds the data of the last service.