Thanks for the quick response!
I'm not too familiar with those options. I hate to ask but could you point me in the right direction?
I have the form open in design view. I clicked on the "sent back" white box aka "Text87" and I have the property sheet open.
Under the Event tab, I see "After update" but I don't see "On current event"
Am I in the wrong area? Also, your instructions, am I to write that into code or once I find the "On current event"?
Thanks again
-----
edit:
I found the "on current" event for the Form itself.
Which option do I pick?
Pick code builder? I have an idea of what I need to code but not too positive.
Code:
Private Sub Text87_AfterUpdate()
If Attempted = "Yes" Then
Text87.Visible = True
Else
Text87.Visible = False
End If
End Sub