I have check box that should hide a field or display a field depending on its status. I placed in the after update procedure. If it starts out as false and changes to true then it displays the fields but once changed to True it always shows True.
Here is the code.
If Me!ContractChairs.Visible = True Then
Me!Product.Visible = True
ElseIf Me!ContractChairs.Visible = False Then
Me!Product.Visible = False
End If
Razor1
Here is the code.
If Me!ContractChairs.Visible = True Then
Me!Product.Visible = True
ElseIf Me!ContractChairs.Visible = False Then
Me!Product.Visible = False
End If
Razor1