我已将2个计算字段添加到我的SSRS矩阵报告中的一个数据集中。下面的这两个计算字段试图对计算列的值求和。
这是VS 2015中“设计”标签的图片:
这是我尝试为分别称为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属性的图片:
我正在寻找如下所示的结果: