I tried using the following code in the "On Format" and "On Print" property for the Detail section, but it doesn't seem to work.
If Me.update_notes = "" Or Me.update_notes = Null Then
Me.lblProjUpdates.Visible = False
Me.lblDate.Visible = False
Me.update_notes.visible = False
End If
If I remove the If Then statement and use the following code, the text boxes and labels disappear:
Me.lblProjUpdates.Visible = False
Me.lblDate.Visible = False
Me.update_notes.visible = False
For Some reason, I can't get vb to recognize that there is no value for update_notes.
Any other ideas or suggestions?
Thanks!