I've got one report with two data sources/queries.
for e.g. data source / query 1 contains:
- all cars
- the configuration of each car
data source / query 2 contains:
- all cars
- the characteristics (consumption , speed) of each car
In the designder i put everything in one group (grouping by data source 1 car ID).
At the moment the report looks like:
But it should look like this:car x
configuration x1
configuration x2
configuration x3...
car y
configuration y1
configuration y2...
car z
configuration z1
configuration z2...
characteristics x1
characteristics x2
characteristics x3...
characteristics y1
characteristics y2...
characteristics z1...
I tried to solve this with a relation via car ID.car x
configuration x1
configuration x2
configuration x3...
characteristics x1
characteristics x2
characteristics x3...
car y
configuration y1
configuration y2...
characteristics y1
characteristics y2...
car z
configuration z1
configuration z2...
characteristics z1...
But it doesn't work because the records of data source / query 2 are multiplying themselves then. And it was not grouping correctly too.
Thank you!
KR
Alex