Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
290
Is it possible to hide a band and show its expanded subbands?
posted

Let me first explain what I try to achieve before I go into details about my problems.

I have to datatables A and B that have a many-to-many relationship. That is to say that a row in A can have many childrows in B. And that a row in B can belong to many rows in A.

To do this I had to introduce a new table, R, that contains the links between A and B.

When I add this datasource I get three bands corresponding to the tables.

A

  - R

     - B

This is not what I want. I would rather just show the bands from A and B. That is to show all the B childrows  to a given A row.

Is there any way to do this? 

 

One solution to get it to display properly is to join the R and B tables.

This works for display purposes, but is not that good when you try to update B, since you will have multiple duplicates of B in the new table.