0
votes

An error occurred during local report processing. The definition of the report '/REPORTNAME' is invalid.

The Value expression for the text box "Texbox 3" uses an aggregate expression without a scope. A scope is required for all aggregate used egates used outside of a data region unless the report contains exactly one dataset.

"Texbox 3" Contains : =SUM(IIF(IsNothing(Fields!Date.Value),0,1)) Also : I have 2 datasets

1

1 Answers

0
votes

Try it

=SUM(IIF(IsNothing(Fields!Date.Value),0,1),"DataSetName") 

When you aggregation values outside a tablix, you need to specify the aggregation's context