Posted 21 November 2019, 5:25 am EST
Example the data will look like this:
ColA | ColB | ColC
1 a a
2 a b
… … …
28 b a
29 b b
… … …
N z z
Binding the datasource in the current section report (i do it in report start function):
Me.DataSource = MyDataTable
I have create 3 labels (lblA, lblB, lblC) for 3 columns above in detail section (in design). Each label properties i set the DataField to its column in MyDataTable (ex: lblA will have DataField look like this:
| DataField | ColA |
The problem is i don’t know to make the report break to the new page if it:
- fully has 45 rows/records in one page
- OR ColB has changed to the new letter
I am using ActiveReport9J.
Thank you.