Hi I'm using the SSRS report builder 2012 where I have a data set that has a field content as a text separated by delimiter ;
I'm trying to split the text and display it in another matrix table each value takes each column and limit the column size to 10 and create a new row after reaching ten column size.
Is it possible to do it in SSRS or can I use a query on existing dataset and retrieve all the text by splitting it into rows in SQL
update:
My Dataset pull information from stored procedure which has a field called ReceiptText
Let say the ReceiptText field has content that looks like below
ABC ; CDF ; EFG ; HIG; KLM; NOP ; QRS; TUV; WXY; Z ;123 ; 456; 789
And I expect the result on the report looks like something below in a matrix table with each value in each column with 10 as max column size and add a row if it exceed the column size
ABC CDF EFG HIG KLM NOP QRS TUV WXY Z
123 456 789