I have a report where some fields are not always populated. I have written code so that if empty the field is not visible in the report. However the white space remains.
Is there additional code to "keep all the fields together"? The code in the (On Format) section of the Page Header is:
If IsNull(name_of_field) Then
Me.name_of_field.Visible = False
Else
Me.name_of_field.Visible = True
End If
thank you
Is there additional code to "keep all the fields together"? The code in the (On Format) section of the Page Header is:
If IsNull(name_of_field) Then
Me.name_of_field.Visible = False
Else
Me.name_of_field.Visible = True
End If
thank you