Hi,
If a checkbox is clicked, the value becomes -1.
Is it possible to change the value -1 to 1?
If a checkbox is clicked, the value becomes -1.
Is it possible to change the value -1 to 1?
Private Sub Intvtrac_Click()
If Me.Intvtrac <> "" Then
Intvtrac = Abs(-1)
End If
End Sub
Private Sub Intvtrac_Click()
If Me.Intvtrac <> "" Then
Intvtrac = Abs(-1)
End If
End Sub
Private Sub Intvtrac_AfterUpdate() If Me.Intvtrac Then Me.Intvtrac = 1 Else Me.Intvtrac = 0 End If End Sub
Private Sub Intvtrac_AfterUpdate() If Me.Intvtrac Then Me.Intvtrac = 1 Else Me.Intvtrac = 0 End If End Sub
Comment