fixious123
Registered User.
- Local time
- Today, 20:24
- Joined
- Oct 3, 2002
- Messages
- 49
This should be fairly easy, just not for me. I have a text box on a form that uses DateAdd calculation. I want the textbox to say Series Complete if Checkbox is checked or True and if not continue to use the DateAdd Calculation. This is what I have so far but its off... Any help appreciated. Thanks.
Private Sub Check384_Click()
If Check384 = True Then
Me.Text87 = "Series Complete"
ElseIf Check384 = False Then
Text87 = DateAdd("m", 6, [Hepatitis A Taken])
End If
End Sub
Private Sub Check384_Click()
If Check384 = True Then
Me.Text87 = "Series Complete"
ElseIf Check384 = False Then
Text87 = DateAdd("m", 6, [Hepatitis A Taken])
End If
End Sub