5

If I have a text separated by a pipe (|) delimiter.

How to replace this separator with new line in RDLC report.


EX:

Name : John Michael | Department : Computer Science |Country : USA 

To

 Name : John Michael 
 Department : Computer Science 
 Country : USA 
Manfred Radlwimmer
  • 13,257
  • 13
  • 53
  • 62
Anyname Donotcare
  • 11,113
  • 66
  • 219
  • 392

1 Answers1

13

Try this may help you

=Replace(Fields!URFieldName.Value, "|", System.Environment.NewLine)
Jaydip Jadhav
  • 12,179
  • 6
  • 24
  • 40