Printed fields and dead space?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Printing conditional fiields all in a row on a report. If a condition is not
true then field is not printed, however, it leaves a blank space. Is there
anyway to eliminate the blank space and print the next "true" field in its
place? I'm not talking about overlaying fields.

ie Field1 = true Printed looks like What I want is
Field2 = false Field1 Field1
Field3 = true <blank> Field3
Field3

This site is a great resource. Thank you for any suggestions.

ScottF.
 
Printing conditional fiields all in a row on a report. If a condition is not
true then field is not printed, however, it leaves a blank space. Is there
anyway to eliminate the blank space and print the next "true" field in its
place? I'm not talking about overlaying fields.

ie Field1 = true Printed looks like What I want is
Field2 = false Field1 Field1
Field3 = true <blank> Field3
Field3

This site is a great resource. Thank you for any suggestions.

ScottF.

Try setting each control's CanShrink property to Yes.
Set the Detail CanShrink to Yes also.
If there is no other control on that line, the next line will move up
if one is null.
 
Back
Top