RobertIngles
Technical User
Back again, thanks for your help PH. I moved the code to the OnCurrent event but unchecked boxes still return the same results as checkbox=true - ie all records show [VIPID] as "VIP" even if checkbox is false. I have searched the web and every reference book I have and still can't identify what I am doing wrong. HELP!
Private Sub Form_Current()
If Me.VIPUser = True Then
Me.VIPID = "VIP"
Else
Me.VIPID = Null
End If
End Sub
Private Sub Form_Current()
If Me.VIPUser = True Then
Me.VIPID = "VIP"
Else
Me.VIPID = Null
End If
End Sub