i am having two data set in rdlc report, and i have set the fields like this
for instance
=Fields!HarbourName.Value,"Dataset1"
=Fields!RenewedTimes.Value,"DataSet2"
i am having two data sources
which is IATP and IATP 1 (both are stored procedures)
when i run the application, i am getting the error saying
"The definition of the report 'Reports\IATPCertificate.rdlc' is invalid.
The Value expression for the text box ‘Textbox3’ refers directly to the field ‘HarbourName’ without specifying a dataset aggregate. When the report contains multiple datasets, field references outside of a data region must
be contained within aggregate functions which specify a dataset scope."
here is my code
using System;
using System.Data;
using System.Data.SqlClient;
using System.Configur ...
Go to the complete details ...