SSRS 参数值按升序排列
SSRS Parameters Value in Ascending Order
我有一个 SSRS 报告,其中包含一个名为 Transfer Id
:
的参数
此列表中的选项未排序 - 如何根据显示的值对此列表进行升序或降序排序?
Transfer Id
参数值取决于报表中的其他参数。
如果您的可用参数值已明确指定(使用“参数属性”对话框的“可用值”页面上的 "Specify values" 选项),则您可以通过选择可用值和使用向上和向下箭头按钮 - 根据 this MSDN page:
The order of items you see in this list determines the order that the
user sees them in the drop-down list. To change the order of an item
in the list, click a Value or Label text box to select the item, and
then use the up and down arrow buttons to move the item higher or
lower in the list.
如果您的选项是数据集的结果,那么您可以使用 ORDER BY
子句在该数据集的查询中设置排序。如果未在 DataSet 上指定顺序,则值将按字母顺序排序。
我有一个 SSRS 报告,其中包含一个名为 Transfer Id
:
此列表中的选项未排序 - 如何根据显示的值对此列表进行升序或降序排序?
Transfer Id
参数值取决于报表中的其他参数。
如果您的可用参数值已明确指定(使用“参数属性”对话框的“可用值”页面上的 "Specify values" 选项),则您可以通过选择可用值和使用向上和向下箭头按钮 - 根据 this MSDN page:
The order of items you see in this list determines the order that the user sees them in the drop-down list. To change the order of an item in the list, click a Value or Label text box to select the item, and then use the up and down arrow buttons to move the item higher or lower in the list.
如果您的选项是数据集的结果,那么您可以使用 ORDER BY
子句在该数据集的查询中设置排序。如果未在 DataSet 上指定顺序,则值将按字母顺序排序。