Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Conditional Sum for Rdlc (aka ReportViewer)

5.00/5 (4 votes)
13 Jul 2010CPOL 41.1K  
Code for summing by group in a RDLC report
Go to Report>Report Properties>Code and insert:

Public Function ConditionalResult(checkField as Field, compareValue as Object, returnValue as Field) As Decimal
    IF checkField.Value <> compareValue
        Return 0 
    else 
        Return returnValue.Value
    end if 
End Function


To insert the group sum, in an aggregrate field (ie, footer), add code similar to:

=Sum(code.ConditionalResult(Fields!Validated, true, Fields!TransactionAmount))

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)