soldat452002
Registered User.
- Local time
- Yesterday, 22:22
- Joined
- Dec 4, 2012
- Messages
- 50
Hello,
I have a form that has two fields that create a condition for another field, It works when I use 1 statement alone, not two . Any ideas why? Thanks
Private Sub Jurisdiction_AfterUpdate()
If Jurisdiction.Value = "California" AND BusinessUnits.Value = "M" THEN
CaseID.Value = " "
End If
End Sub
I have a form that has two fields that create a condition for another field, It works when I use 1 statement alone, not two . Any ideas why? Thanks
Private Sub Jurisdiction_AfterUpdate()
If Jurisdiction.Value = "California" AND BusinessUnits.Value = "M" THEN
CaseID.Value = " "
End If
End Sub