【发布时间】:2015-04-20 11:13:06
【问题描述】:
我有一个带有参数的报告是我可以选择多个值的年份:例如我选择了 2005,2006,2007
当我点击查看报告时,我得到了这个结果
我添加了一些自定义代码以在数组列表中添加值
Dim values As System.Collections.ArrayList
Function AddValue(ByVal newValue As Integer)
If (values Is Nothing) Then
values = New System.Collections.ArrayList()
End If
values.Add(newValue)
End Function
Public Function GetArray(Item as Integer)
return values(Item)
End Function
我在我的矩阵中添加了我的代码这是结果
第一行我得到了正确的答案,但其他行是错误的答案这是我需要的结果
【问题讨论】:
标签: vb.net reporting-services ssrs-2008 ssrs-tablix ssrs-grouping