I'm new to expressions in SSRS, hope you can help!
I need to create the following:
"Count [issueID] where [closed] is not null and [due_date] is in the past."
I can do the first bit, but don't know the syntax to add the "...and [due_date] is in the past" in the textbox expression.
Cheers
Lins
It would be easier to modify your dataset source to return this flag in your data. If you are not going to modify your data then I guess you could...
Set the expression for the Calculated Field
=IIF(!IsNothing(Fields!Closed.Value) && Fields!DueDate.Value < DateTime.Now,1,0)
Now you can add an expression similar to
=IIF(SUM(Fields!MyCal.Value) > 10 , "+10","not + 10")