reporting services - SSRS - How to Split comma " , " seperated values in a cell to adjacent different column with same column header in SSRS -
How to separate values in a cell to get value in different columns adjacent to the same column header in the SSRS
I have found a query table in the SSRS report as
ProjectNo | ProjectName | Client | Programmer | 01 | Aave | Rohan, Zika | A, B, C Now I want to show SSRS in this form -
ProjectNo | ProjectName | Client | Programmer | 01 | Aave | Rohan | Zoka | A. B C. Any suggestions How can I get it only by using SSRs, and can not modify the query ...
You will need to enter an expression in each supporting helper cell which will use the split function to return the substrate from your query column. This expression will be in the category of each element that you want to return from the array.
Hope that helps - Tell me if you would like an example.
Comments
Post a Comment