Click here to Skip to main content
15,888,454 members
Articles / Programming Languages / C#
Tip/Trick

Conditional Sum for Rdlc (aka ReportViewer)

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
13 Jul 2010CPOL 40.6K   5   1
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)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionYour code lacks more explanation. Pin
Member 104451664-Apr-15 9:30
professionalMember 104451664-Apr-15 9:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.