Hi all i am trying to get a recall date on my form to auto populate using a combo box. In my combo box i have a "1 year", "6 Month" and "4 Month" options. When i choose one of those i want it to take the current date and add the appropriate time into the recall date field. Here is my code thus far.
Private Sub Combo1377_AfterUpdate()
If Combo1377 = "1 Year" Then
Me.RecallDate.Value = AddDate(YYYY, 1, Date)
End Sub
Can you guys fine my error and give me tips?
Private Sub Combo1377_AfterUpdate()
If Combo1377 = "1 Year" Then
Me.RecallDate.Value = AddDate(YYYY, 1, Date)
End Sub
Can you guys fine my error and give me tips?