Thanks for the help in advance.
I have a string in a column that is formatted thus:
1;#Dog;#5;#Cat;#8;#Blue Belly Bird;#10;#Big Moose;#16;#Cow
I need to split the string and place each string value in it's own row in a Tablix like this:
Dog |
Cat |
Blue Belly Bird |
Big Moose |
Cow |
I am familiar with using an array and splitting the string in that manner, I am stuck on how to get each value into it's own row.
Any help would be greatly appreciated!
UPDATE:
The String data is coming from a column in a SharePoint list and not straight from an SQL table.