如何在fastreport.net中分组页面

本文关键字:net fastreport | 更新日期: 2023-09-27 18:07:57

我使用3个表通过以下查询生成报告,我需要在新页面上开始每个日期,但所有行都在其他
的底部如何将任意日期的行分隔为新页

select PM_Report.*,PM_Scores.*,PM_Table.* from PM_Report left outer 
       join PM_Scores on PM_Report.date=PM_Scores.date and
       PM_Report.period=PM_Scores.period left outer join PM_Table 
       on PM_Table.row=PM_Scores.row and PM_Table.period=PM_Scores.period 
       where PM_Table.period='daily' and PM_Report.date between 
       '2015/05/01' and '2015/05/05' order by PM_Report.date

如何在fastreport.net中分组页面

  1. 添加GroupHeaderGroupFooterdata波段
  2. 将组的GroupCondition设置为date或您的日期列名称。
  3. 设置GroupHeaderGroupFooterStartNewPage属性为true