There is a sub-report in a report (Access 97). I would like the fields in the sub-report to be compressed if the values are null, and eliminate the space from the sub-report.
I try to write the code to do it but never success:
Private Sub Report_Open(Cancel As Integer)
If Me.Action3 is Null Then
Me.Action3.Visible = False
End If
End Sub
Please help.
I try to write the code to do it but never success:
Private Sub Report_Open(Cancel As Integer)
If Me.Action3 is Null Then
Me.Action3.Visible = False
End If
End Sub
Please help.