I am trying to find the value in field 1 (called "winselect")
and if the value entered in field 2 (called "winselectb") is the same then i want to make the value of field 2 null.
here is what i have
Dim jim As Integer
jim = [winselect].Value
If [winselectb] = jim Then
[winselectb] = ""
DoCmd.GoToControl "winselectb"
End If
and guess what it does not work!
it does not seem to pick up this line
If [winselectb] = jim Then
can anybody help
and if the value entered in field 2 (called "winselectb") is the same then i want to make the value of field 2 null.
here is what i have
Dim jim As Integer
jim = [winselect].Value
If [winselectb] = jim Then
[winselectb] = ""
DoCmd.GoToControl "winselectb"
End If
and guess what it does not work!
it does not seem to pick up this line
If [winselectb] = jim Then
can anybody help