G
Guest
I have some code on a data entry form that looks like this....
Private Sub Issues_AfterUpdate()
If Me.[Issues].Value = "Other" Then
Me.[IssuesFound].Value = -1
End If
End Sub
If Issues is Null I want the value in IssuesFound to be "No" (this is a
checkbox). How do I code this?
Private Sub Issues_AfterUpdate()
If Me.[Issues].Value = "Other" Then
Me.[IssuesFound].Value = -1
End If
End Sub
If Issues is Null I want the value in IssuesFound to be "No" (this is a
checkbox). How do I code this?