I am trying to display a list of values from a dataset in SSRS 2008 r2. I created a dataset that pulls a list of serial numbers from a shipper number parameter. I can get the S/Ns to display on the report, but they are in a column format which takes multiple pages. I am trying to put them in a paragraph format separated by commas. ie - s/n1, s/n2, s/n3, ... I found an article on this site using Join but I couldn't adjust it to work for me.
Here is the query I am using to pull the data:
SELECT A.fserial FROM smsm2mdata.dbo.serial AS A JOIN shmast AS B ON B.fshipno = A.fshipno WHERE B.fshipno = @fshipnoAnd I put the field into a list tablix on the report
This is the last hurdle before I can publish the report ... Help!