W
whitjl143
I have a field in the detail section that I want to print when the value of
another field is "Yes". This code works on the field itself but does not
hide/unhide the Label of the field.
If Me.Revised = "Yes" Then
Me.RevisedDate.Visible = False
Else
Me.RevisedDate.Visible = True
End If
Any suggestions?
another field is "Yes". This code works on the field itself but does not
hide/unhide the Label of the field.
If Me.Revised = "Yes" Then
Me.RevisedDate.Visible = False
Else
Me.RevisedDate.Visible = True
End If
Any suggestions?