Empty Fields
I have created a table with info for chart audit reviews..
It includes fields that are sometimes empty. We need a report that includes all information but will not print the empty fields. I don't know how to do this and I'm not very good at any of this yet. Could you please help me?
I am trying to create a report of the same but I don't understand where to put the following things:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Me.MyField.Visible=Not IsNull(Me.MyField)
End Sub
If IsNull(me.somefield) then
me.somefield.visible = false
else...