I have an SSRS report with a parameter called Transfer Id
:
The options in this list are not ordered - how can I sort this list ascending or descending based on the displayed values?
The Transfer Id
parameter value is dependent on other parameters in the report.
If your available parameter values are being specified explicitly (using the "Specify values" option on the Available Values page of the Parameter Properties dialog, then you can set the order of the options explicitly by selecting an available value and using the Up and Down arrow buttons - as per this MSDN page:
If your options are the result of a DataSet, then you can set the ordering in that DataSet's query with an
ORDER BY
clause. If no ordering is specified on the DataSet, the values will be sorted alphabetically.