Hello,
i am creating a transaction report in which the transaction are filtered by a country. Naturally, it is possible to use group by but the requirement design is separated in different tablix.
i am currently failed trying to use a table as 2 datasets where resulted in 1 dataset has records where the other is blank
ShipmentPlanSumReportTmp tmpID, tmpTH;
[SRSReportDataSetAttribute("ShipmentPlanSumReportTmp_ID")]
public ShipmentPlanSumReportTmp getIDTmp()
{
select tmpID;
return tmpID;
}
[SRSReportDataSetAttribute("ShipmentPlanSumReportTmp_TH")]
public ShipmentPlanSumReportTmp getTHTmp()
{
select tmpTH;
return tmpTH;
}
i have also tried to use 1 table and add where condition inside these getTHTmp and getIDTmp method, but also have different results
is it still possible to separate the data inside the getTmp() method or i should just created multiple tables according to the tablix needed?
Daniel Antineus