尝试对表达式进行排序 table

Trying to SORT table on Expression

我的报告中有两个 table。按字段 DatePaidFinancialYear 分组,然后按 SupplierName 分组。

我已经删除了组本身的两种类型。 tablix也没有排序。

然后我在一个 table 中有一个 COUNT IF 执行以下操作 - =Count(IIF(Fields!DaysLateCategory.Value = "Over10Days" , 1, Nothing)) 和下面的另一个 =Count(IIF(Fields!DaysLateCategory.Value = "Over30Days" , 1, Nothing))

这给了我以下 -

我想排序,使最大的数字排在最前面。我不知道该怎么做。

当我尝试通过 Tablix 按计数排序时 - 我收到以下错误 -

tablix 'Tablix5' 的排序表达式包含聚合函数。数据行排序表达式中不能使用聚合函数

请指教

IRC - you should remove the table sort and sort using the same expression on the Group properties

非常好。我本可以发誓我尝试过这个但显然没有。现在一切正常。

谢谢