Get a due date

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a little mess on my mind!!!

I had a form with StartDate Field, format short date, and a field called
Term, format general number. StartDate and Term will change. What I would
like to get in the third field is the DueDate.

StartDate = 06/15/2006
Term = 6
DueDate = 12/15/2006

I will really appreciate the help of the "gurus" in Access.

Thanks
 
You can use DateAdd function, in the control source of the DueDate field write

=DateAdd("m",[Term], [StartDate ])
 
Back
Top