How to implement grouping and multi column reports

I want to implement a report: grouping and multiple columns. The value of the grouping field should be displayed at the top of each page; The columns need to be displayed from top to bottom and from left to right. Please refer to the file 'wanted report.docx' for details.

Thanks.

Comments

  • use TfrxPageHeader band, set TfrxGroupHeader.Height to 0

    use Page1.OnBeforePrint event:

       procedure Page1OnBeforePrint(Sender: TfrxComponent);

       begin

       MasterData1.Dataset.First;

       end;

Leave a Comment