I have 2 datasets and one tablix. In the [ClaimantAddress] dataset, I have an [AddressType] field with either Residence or Mailing address.
CLAIMS dataset = CLAIMID, FIRSTNAME, LASTNAME, CLAIMANTID fields
CLAIMANTADDRESS dataset = CLAIMANTID, ADDRESSTYPE, ADDRESS, CITY, STATE, ZIPCODE fields and a calculated field FULLADDRESS.
The tablix main is the CLAIMANTADDRESS column grouped by ADDRESSTYPE field. I use JOIN/LOOKUP SET to display data from the CLAIMS dataset.
The report looks like this:
Claim ID# | First Name | Last Name | Claimant ID | Mailing Address | Residence Address |
123, 124, 125 | A, A, A | B, B, B | 1111 | 17 Giotto Dr | 17 Giotto Dr |
But is there a way for me to display the data into separate rows like this:
Claim ID# | First Name | Last Name | Claimant ID | Mailing Address | Residence Address |
123 | A | B | 1111 | 17 Giotto Dr | 17 Giotto Dr |
124 | A | B | 1111 | 17 Giotto Dr | 17 Giotto Dr |
125 | A | B | 1111 | 17 Giotto Dr | 17 Giotto Dr |