Report Viewer Conditional Sum

1.6k Views Asked by At

In Visual Studio Report Viewer I need to sum the values in a column that satisfy a condition present in a second column

For example like this column 3:

Table

1

There are 1 best solutions below

0
On

You have to Set these expressions:

Cell expression: =IIf(IsDate(Fields!Col2.Value),Fields!Col1.Value,Nothing)

Sum expression: =Sum(CDbl(IIf(IsDate(Fields!Col2.Value), Fields!Col1.Value,0)))