I have the below code to Deactivate the referred to text boxes when the Check box is clicked. I also want to have it add "Inactive" as the value in that field. Any thoughts on how to do this?
Private Sub Check284_AfterUpdate()
If [A4].Visible = True Then
[A4].Visible = False
Else
[A4].Visible = True
End If
If [A16].Visible = True Then
[A16].Visible = False
Else
[A16].Visible = True
End If