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...