G
Guest
Hi
X1 and X2 are calculated controls in a form.
The code below sets the X3 to true in all records without checking if X1=X2
What is wrong with?
Thank you in advance
Private Sub Form_Current()
If (Me!X1= Me!X2) Then
Me!X3 = True
End If
End Sub
X1 and X2 are calculated controls in a form.
The code below sets the X3 to true in all records without checking if X1=X2
What is wrong with?
Thank you in advance
Private Sub Form_Current()
If (Me!X1= Me!X2) Then
Me!X3 = True
End If
End Sub