RDLCレポート-グループ番号
1973 ワード
1.RowNumber(「group_name」)は、行ごとにグループごとに1,2,3を再表示し、グループごとに1を表示してインクリメントする必要がある場合は、カスタムコードで制御し、レポート-プロパティ-コードに挿入する必要があります.
次に、レポート・セル-式で呼び出します.
Dim count As Integer
Dim GroupName As String
Public Function GroupCount(name As String) As String
If (GroupName = "") Then
count = 1
GroupName = name
GroupCount = count
Exit Function
End If
If (GroupName = name) Then
count = count
GroupCount = count
Else
GroupName = name
count = count + 1
GroupCount = count
End If
End Function
次に、レポート・セル-式で呼び出します.
=Code.GroupCount(Fields!FieldName.Value)