Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 tablix,它由 tablix 本身未显示的数据集字段过滤。接下来,我在页脚行中添加了一个总和:
=Strings.FormatNumber(Sum(CDec(Fields!BillHours.Value)), 2)
然而,产生的总和是所有数据集 BillHours 的,而不是过滤的。我该如何解决?
如果您知道过滤条件,您可以尝试以下操作,=Strings.FormatNumber(Sum(IIF(FilterCondition, CDec(Fields!BillHours.Value)), 0), 2)
你是怎么做过滤的?