在SSRS矩阵报告中添加2个计算字段时遇到问题

时间:2019-05-17 16:02:50

标签: sql-server reporting-services

我已将2个计算字段添加到我的SSRS矩阵报告中的一个数据集中。下面的这两个计算字段试图对计算列的值求和。

这是VS 2015中“设计”标签的图片:

enter image description here

这是我尝试为分别称为PendingEffectiveness和ClosingRatio的2个新计算字段创建代码的方法:

=(IIF(Fields!FeatureType.Value = "BeginningPending", (Fields!FeatureCount.Value*100.0), 0) / IIF(Fields!FeatureType.Value = "FeaturesPending", (Fields!FeatureCount.Value),0))

=(IIF(Fields!FeatureType.Value = "ClosingFeatures", (Fields!FeatureCount.Value/100.0), 0) / IIF(Fields!FeatureType.Value = "NewFeatures", (Fields!FeatureCount.Value),0))

当我在VS 2015中预览报表时,我添加的计算列甚至没有显示在报表中。任何帮助/方向将不胜感激。谢谢。

这是数据集1属性的图片:

enter image description here

我正在寻找如下所示的结果:

enter image description here

0 个答案:

没有答案