I am trying to hide a label if the value of a field equals a certain criteria.
I have the following code which is not working:
Any ideas?
I have the following code which is not working:
Code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.AddressType.value = "Bank of Scotland Plc" Then
Me.Label14.Visible = True
End If
End Sub
Any ideas?