colinmunnelly
Registered User.
- Local time
- Today, 00:31
- Joined
- Feb 26, 2002
- Messages
- 89
I am trying to do a nvery simple if, then statement but it doesn't seem to be working as it should. I know the solution must be really simple. Anyone shine some light.
Private Sub Form_AfterUpdate()
If text69 = "" Then
MsgBox ("no impact")
Else
'DoCmd.OpenForm "notice_input_form", acNormal
End If
End Sub
Private Sub Form_AfterUpdate()
If text69 = "" Then
MsgBox ("no impact")
Else
'DoCmd.OpenForm "notice_input_form", acNormal
End If
End Sub