blindlemonray
Technical User
I am trying to update a field in a table with text when a box is checked on a form. So you tick the box and field is updated with "test" for example and then when you untick the word is deleted. I have this code in place but I keep getting a write conflict.
If chk_box = True Then
Me.field_name = "test"
ElseIf chk_box = False Then
Me.field_name = " "
End If
Any Ideas???
If chk_box = True Then
Me.field_name = "test"
ElseIf chk_box = False Then
Me.field_name = " "
End If
Any Ideas???