Collapse blank lines

  • Thread starter Thread starter Meryl
  • Start date Start date
M

Meryl

I have a report which prints out addresses for
physicians. Each address line is printed below each
other, but not all fields have values in them, so there
may be blank lines in the report. Is there a way that
these blank lines are collapsed if there is no data?

Thx.
 
Set the CanShrink property to Yes to the boxes that may be blank.

Make sure the Detail(?) section's CanShrink property is still No.
 
Set the CanShrink property of the textbox to Yes. This will work if there is nothing else
in line (even partially) horizontally with the control except for its bound label. If the
label becomes unbound this won't work. Also, if you're not printing on label stock or
something else where it is important to maintain the size of the detail section, you may
also want to set the CanShrink property of the section to Yes.
 
Back
Top