Hello,
I want to sum up possible different values of a field if a condition is true. For example:
=Sum(IIF(Fields!status.Value = "Open",0, (IIF(Fields!status.Value = "Waiting",0, (IIF(Fields!status.Value = "Closed",0, (IIF(Fields!status.Value = "Completed",0, Fields!status.Value))))))))
I want a numeral count if the values of a field (Fields!status.Value) are Open, Waiting, Closed or Completed.
Using the Case entity for example, if there are different possible values for Status (Open, Waiting, Closed and Completed). There should be a count of how many Case records are in the different stages...
The code above is giving some errors, I am using SSRS report builder 3.0 for this.
Please help