I need some help creating an expression in a dataset called "ReportData" that references a field from a different dataset called "Contracts".
I've tried the expression builder, and created the following expression:
=IIf((First(Fields!Product.Value, "Contracts")="Loan"),
cdbl(Sum(Fields!Provision.Value, "Contracts")),
cdbl(0))
This returns 0, which is correct, because First(Fields!Product.Value, "Contracts")="Loan" is indeed false, but I want to evaluate the "entire" Product Field, and not just the first value.