I can't get my data (next serv) to update from the (last serviced) date If my
(maint) field is Yes. Any help on the argument would be helpful.
The Next Service field probably *should not exist*, since it can be
calculated on demand any time:
NextService: IIF([Maint], DateAdd("ww", 6, [Last Serviced]), Null)
If you wish to store it (perhaps the 6 weeks is a suggested default
which you may want to edit), you can use the same expression in an
Update query or in the BeforeUpdate event of the Form you're using to
enter the data.
John W. Vinson[MVP]