I have drill down report in which report data is group by category.
For example:
Category Product Name Amount
- Mobile
Product 1 2000
Product 2 3000
- Book
Book 1 300
Book 2 400
The total records are 4. But if I calculate them on the basis of category, then they are two.
So when I insert page break by adding parent group and put the following expression in that group:
=Ceiling((RowNumber(Nothing)) / 2)
Then it will show only 1 category Mobile on 1st page. But I need 2 categories on one page.
Help me regarding this.