Options

Horizontal Printing

navuser1navuser1 Member Posts: 1,329
Dear All,

I want to print my Items Serial Nos one after another in horizontal way & each one will be separated from a Comma(,) separator (Pic below). I don't want to use Array in this design because we already have some issues with arrays.
6y1xa07kezd9.png
Please share if you have any other opinion in this regards.

Thanks in advance.
Now or Never

Answers

  • Options
    DolshaDolsha Member Posts: 41
    Try use STRSUBSTNO: STRSUBSTNO('%1, %2, %3, %4, %5, %6',SerialNo1,SerialNo2,SerialNo3,SerialNo4,SerialNo5,SerialNo6)
  • Options
    navuser1navuser1 Member Posts: 1,329
    What should I write in the Data Source Portion of Report DataSet Designer ?
    Now or Never
  • Options
    navuser1navuser1 Member Posts: 1,329
    SerialNo1, SerialNo2 are the Serial Nos stored in the Database.
    Now or Never
  • Options
    DolshaDolsha Member Posts: 41
    u can write STRSUBSTNO(...), or u can create some TEXT variable and try in code:
    SerialNumbers := STRSUBSTNO(...);
    then use SerialNumbers in Data Source.
  • Options
    navuser1navuser1 Member Posts: 1,329
    Each Serial No. has a length of 15-20 Characters & a Sales Item may have 1000 of Serial Nos.
    Now or Never
Sign In or Register to comment.