Posted on 17th September 2024|2308 views
Can anyone tell me about split function in SSRS
Posted on 17th September 2024| views
In SSRS, Split Function is used to split the given string. It splits the string according to the character you have mentioned.
Example:
Split(Fields!Address.Value,",")(3).ToString()
It will return the fourth value.