If we want to split the value in SSRS then we can use the in built split function as follows
For example :
if we want to split "AB,BC,CD" in to "AB" "BC" and "CD".
Split("AB,BC,CD",",").GetValue(0)
Split("AB,BC,CD",",").GetValue(1)
Split("AB,BC,CD",",").GetValue(2)
Thx,
RS
No comments:
Post a Comment