Removing Extra Space on Form

SUGGESTED

We're editing our picking form, but now when there is a comment on an item it will add a line of space before the next line item. Is there a way to get rid of this space? Is there a way to get rid of the extra space created when an item doesn't have a comment too? I'm not sure if suppressing is the right method for fixing this. I've attached a sample of the form and a snip of Crystal Reports. 

Thanks so much! 

  • 0

    Green= Space left when item doesn't have a comment. (I prefer that this space isn't there when there isn't a comment) 

    Yellow= Space created when item above has a comment. 

  • 0 in reply to ArmanXavier
    SUGGESTED

    I noticed you have a blank section in your report. How are you handling that. You can shrink the height of the comment field and have it marked as "Can Grow" so if there is a comment it will grow.  Normally I have the Comment field in it's own detail section with the the Suppression formula of:

    If {SO_PickingSheetWrk.LotSerialSeqNo} > "00000000000001" Then
    Formula = True
    ElseIf {SO_PickingSheetWrk.ItemType} = "4" Then
    Formula = False
    ElseIf {SO_PickingSheetWrk.ItemType} <> "4" AND _
    Left({SO_PickingSheetWrk.CommentText},255) <>"" Then
    formula = False
    Else
    Formula = True
    End If