I have a report that has a table that is populated from a stored procedure showing sales by contract - one line per contract.
I need to add 2 levels of groups so that I can show Sales by Salesperson within Shop with a page break on Shop and totals at both the Salesperson and Shop levels.
I have tried adding 2 Groups and moved the table to the last Group Header section but the grouping doesn't seem to be doing anything. The report is not showing any Shop or Salesman details. The design is shown in the attached image.
What am I missing?
Regards
Kevin

namespace Reports { using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; using Telerik.Reporting; using Telerik.Reporting.Drawing; /// <summary> /// Summary description for Conservation2VacuumReport. /// </summary> public partial class ConservationPressureReport : Telerik.Reporting.Report, IStandardReport { public ConservationPressureReport() { /// <summary> /// Required for telerik Reporting designer support /// </summary> InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // } #region IStandardReport Members ProjectReport IStandardReport.ProjectReport { get { return this.ProjectReport.ReportSource as ProjectReport; } } TankReport IStandardReport.TankReport { get { return this.TankReport.ReportSource as TankReport; } } ISO283Report IStandardReport.isoReport { get { return isoReport.ReportSource as ISO283Report; } } public bool iso283Visible { get { return isoReport.Visible; } set { isoReport.Visible = value; } } VacuumReport IStandardReport.vacuumReport { get { return this.VacuumReport.ReportSource as VacuumReport; } } #endregion } }
Hi, I am working on Telerik Reporting version R3 2017. I got the output as expected and it is giving me report very accurately if all data is there. In some cases I am my Table wizards do not have Data in Datasource and as result it is creating an empty patch on report.
Let me explain: Lets say I have 4 table wizards
TableWizard1 - shows Customer with only with First Name
TableWizard2 - shows Customer with only with Last Name
TableWizard3 - shows Customer with only with Address
TableWizard4 - shows Customer with only with Phone Number
All 4 table wizards getting filled by only one CustomerDetailsDataSource to make it in different tables I applied filters Lets say for TableWizard1, I applied filter if F_Name!= "" or for TableWizard2 I applied filter L-Name!= "".
Now, my problem is if there is TableWizard1, TableWizard2 & TableWizard4 has some data and TableWizard3 do not have any data still it is showing an empty patch on ReportViewer, Obviously on PDF also.
I had look on NoDataMessage but it seems like it doesnt work in this case. Can you please suggest how can I handle that?
Thank You

