我有一个XtraReport,数据源是一个存储过程。
我使用以下代码打开它:
report.DataSource = saw.DailyProductionMachineRep(Convert.ToDateTime(ProducationDay.EditValue).ToString("MM/dd/yyyy"),Convert.ToInt32(ligne.EditValue));
report.ShowRibbonPreviewDialog();
该报告将打开,没有任何问题,并且所有数据均正确设置。
在我的groupFooterBand1
中,我放置了两个xrlable(xrlable7, txtMachine)
,将xrlable7
表达式设置为sumSum([Poids Tot])
,将txtMachine
设置为[Machine]
。
在我的reportFooterBand1,
中放入xrlable
(xrlable1
),然后将表达式设置为:
Iif([ReportItems].[txtMachine].[Text]='VB1050',[ReportItems].[xrLabel7].[Summary], 0)
但是当报表在xrlable
中打开时,我得到:
DevExpress.XtraReports.UI.XRSummary
我也使用此表达式:
Iif([ReportItems].[txtMachine].[Text]='VB1050',[ReportItems].[xrLabel7].[Text], 0)
这也不起作用。
在这种情况下如何获取摘要?