How could I Split comma " , " seperated values in a cell to get value into adjacent different column with same column header in SSRS I got a query table in SSRS report as follows
ProjectNo. | ProjectName | Client | Programmers |
01 | ave | rowan, Zica | A, B, C |
Now I want to display this in SSRS as Follows -
ProjectNo. | ProjectName | Client | Programmers |
01 | ave | rowan | Zica | A | B | C |
Any suggestion How could i achieve this only using SSRS ,and not modifying the query...