Labels - How to repeat info multiple times

bhalpin
bhalpin Member Posts: 309
Hi.

I have a report to print labels and I need to repeat the info for the records printed a varying number of times. eg: Record 1 - 3 labels, record 2 - 1 label, record 3 - 5 labels, etc.

Any quick pointers on how to do this?

Thanks' in advance.

Comments

  • kapamarou
    kapamarou Member Posts: 1,152
    Use an integer Dataitem under your record Dataitem indented. The do:

    IntegerRec.SETRANGE(Number,1,LoopCount);

    Then print your labels in the body of the integer Dataitem.

    Search the forum for integer and dataitem. It has plenty of info on how to use it and example reports from standard Nav.

    Hope this helps... :D
  • bhalpin
    bhalpin Member Posts: 309
    Thanks!
  • kapamarou
    kapamarou Member Posts: 1,152
    You're welcome :D