Hello
I have a problem with lazreport
I created a "Master data" band with a field A, and a child band with a field B. Both fields are in the same dataset
My display is as follows
A Value 1 | |
| B value 1.1 |
A Value 1 | |
| B value 1.2 |
A Value 1 | |
| B value 1.3 |
A Value 2 | |
| B value 2.1 |
A Value 2 | |
| B value 2.2 |
When I set HideDuplicates=True, the display becomes
A Value 1 | |
| B value 1.1 |
(Blank line) |
| B value 1.2 |
(Blank line) |
| B value 1.3 |
A Value 2 | |
| B value 2.1 |
(Blank line) |
| B value 2.2 |
I would like to make these white lines disappear to obtain
A Value 1 | |
| B value 1.1 |
| B value 1.2 |
| B value 1.3 |
A Value 2 | |
| B value 2.1 |
| B value 2.2 |
I tried with a script to reduce the size of the "Master data" band when the A field is not visible, but it doesn't work
How can I do this?