sort a report by either ascending or decsending order

karuchuakaruchua Member Posts: 151
i have a report which i want to filter by either descending or ascending order depending on which option the user selects from the request form.
how do i go about this?
any help.

Comments

  • vijay_gvijay_g Member Posts: 884
    look at function ASCENDING. by passing parameter to this function you can do.
  • mohana_cse06mohana_cse06 Member Posts: 5,504
    karuchua wrote:
    i have a report which i want to filter by either descending or ascending order depending on which option the user selects from the request form.
    how do i go about this?
    any help.

    If there is no request options form, an empty form is displayed. On this form, users can choose options such as Print and Cancel. If you set UseReqForm to No, the report will start printing as soon as it is run. In this case, users cannot cancel the report run. It will still be possible to cancel the report, but some pages may still print. If a DataItemTableView is not defined, users can select the key and sort order at runtime.

    Be careful what you allow users to change. In complex report that involves data from several tables, the functionality may depend on a specific key and sort order. Letting the user choose filters freely does not interfere with the logic of the report.
  • karuchuakaruchua Member Posts: 151
    thank you. the ascending function works well.
Sign In or Register to comment.