I want to take a date that has already been entered(the last service date).
This will be the last date that the customer was serviced. Each customer
either has a monthly, semiannual or yearly service. I want to auto calculate
the next date to be serviced based on the last date the customer was
serviced. It will have to continue to do this.
Don't store the next service data *AT ALL* in any table.
Instead, calculate it dynamically in a Query, or in the control source of a
form or report textbox.
If the service interval (in integer months) is stored in a field
ServiceInterval, use a calculated field
NextService: DateAdd("m", [ServiceInterval], DMax("[ServiceDate]",
"[Servicetablename]", "[CustomerID] = " & [CustomerID])
John W. Vinson [MVP]