I am trying to hide certain rows on the detail section of a report if the field value is null
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If IsNull(contact_date) And action = "" Then
Me.action.Properties("Visible") = False
End If
End Sub
but this hides the Action field through out the report. Any idea on how to hide rows( some are empty fields and some fields have value)
thanks
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If IsNull(contact_date) And action = "" Then
Me.action.Properties("Visible") = False
End If
End Sub
but this hides the Action field through out the report. Any idea on how to hide rows( some are empty fields and some fields have value)
thanks