获取条件汇总

时间:2018-12-14 11:23:30

标签: c# winforms devexpress

我有一个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,中放入xrlablexrlable1),然后将表达式设置为:

Iif([ReportItems].[txtMachine].[Text]='VB1050',[ReportItems].[xrLabel7].[Summary], 0)

但是当报表在xrlable中打开时,我得到:

DevExpress.XtraReports.UI.XRSummary

我也使用此表达式:

Iif([ReportItems].[txtMachine].[Text]='VB1050',[ReportItems].[xrLabel7].[Text], 0)

这也不起作用。
在这种情况下如何获取摘要?

0 个答案:

没有答案