Sorry, didn't make myself clear earlier...my code is the following:
If IsNull(Lawson_Number_24) Then
Lawson_Number_24.Visible = False
Description24.Visible = False
UC24.Visible = False
UIC24.Visible = False
NU24.Visible = False
Else
Lawson_Number_24.Visible = True
Description24.Visible = True
UC24.Visible = True
UIC24.Visible = True
NU24.Visible = True
End If
(There are 24 sets of boxes on the report that may/may not be hidden!)When the report is generated, the proper fields are hidden if they are "Null". However, the report still allows for the space of the hidden boxes. Is there a way to overcome that? It makes my report incredibly long.
Sorry, I'm not a programmer, so I've tried things like
Description24.Delete (which of course didn't work!)
Thanks!
If IsNull(Lawson_Number_24) Then
Lawson_Number_24.Visible = False
Description24.Visible = False
UC24.Visible = False
UIC24.Visible = False
NU24.Visible = False
Else
Lawson_Number_24.Visible = True
Description24.Visible = True
UC24.Visible = True
UIC24.Visible = True
NU24.Visible = True
End If
(There are 24 sets of boxes on the report that may/may not be hidden!)When the report is generated, the proper fields are hidden if they are "Null". However, the report still allows for the space of the hidden boxes. Is there a way to overcome that? It makes my report incredibly long.
Sorry, I'm not a programmer, so I've tried things like
Description24.Delete (which of course didn't work!)
Thanks!