Results 1 to 3 of 3

Thread: [RESOLVED] Adding blank lines

  1. #1

    Thread Starter
    Hyperactive Member yousufkhan's Avatar
    Join Date
    Jan 2002
    Location
    India
    Posts
    492

    Resolved [RESOLVED] Adding blank lines

    I have field RowNo in details section of rpt
    how can i add blank lines if rowno 1,2 is there and after 2 directly rowno 5 comes from table then there should be 2 blank lines between the next and current record

  2. #2
    PowerPoster
    Join Date
    Oct 2002
    Location
    British Columbia
    Posts
    9,758

    Re: Adding blank lines

    1) Create this Formula
    Local numberVar X := 0;
    Local stringVar Result := "" ;

    For X := {Table.RowNo}+1 To Next({Table.RowNo})-1 DO
    Result := Result + chr(13);

    Result

    2) Add another Detail section and put the formula in this section. Set the Formula's CanGrow option.

    3) Suppress this Detail section with this Formula
    {Table.RowNo} + 1 = Next ({Table.RowNo})

  3. #3

    Thread Starter
    Hyperactive Member yousufkhan's Avatar
    Join Date
    Jan 2002
    Location
    India
    Posts
    492

    Re: Adding blank lines

    Thanks a lot brucevde

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width