Sorting Description

AlkroAlkro Member Posts: 115
A Report is a list of items and is order by Description. I have a key (Description,No.) but there is a problem.

If an item has the same "Description" only print a item.

No. - Description - Description 2

00001 - Item - Type 1
00002 - Item - Type 2

The report shows only item 00001.

Why? The key is (Description, No.).

:-k

Answers

  • ArhontisArhontis Member Posts: 667
    Hi,

    I guess you have grouping on your report that skips the second Item or has code that sets the visibility of a band (SHOWOUTPUT) and somehow hides your second item.

    You should design and study that report or debug it, to see what is going on...
    Or create a new, simpler report without grouping or special code to see if it works better...
  • AlkroAlkro Member Posts: 115
    ](*,)

    Solved :)

    Key: Description,No.

    Dataitem: Item
    GroupTotalFields: No.

    Thanks :)
Sign In or Register to comment.