New to Telerik ReportingStart a free 30-day trial

Adding Sortings to Report

  1. Click the Report selector button located in the upper left-hand of the Report Designer

  2. Click the Sorting ellipsis.

  3. For each sort expression, follow these steps:

    1. Click New.
    2. Type or select an expression by which to sort the data.
    3. From the Direction column drop-down list, choose the sort direction for each expression. ASC sorts the expression in ascending order. DESC sorts the expression in descending order.
  4. Click OK.

Adding sorting to Report Group using Report Designer

  1. Open the Group Explorer

  2. Click the Report selector button located in the upper left corner of the Report Designer. This makes the report active in the Group Explorer

  3. Choose a Report Group and click its Sorting ellipsis.

  4. For each sort expression, follow these steps:

    1. Click New.
    2. Type or select an expression by which to sort the data.
    3. From the Direction column drop-down list, choose the sort direction for each expression. ASC sorts the expression in ascending order. DESC sorts the expression in descending order.
  5. Click OK.

Adding sorting to Report programatically

C#

            Telerik.Reporting.Sorting sorting1 = new Telerik.Reporting.Sorting();
            sorting1.Expression = "=Fields.ProductID";
            sorting1.Direction = Telerik.Reporting.SortDirection.Asc;

            report1.Sortings.Add(sorting1);

See Also