My query returns a field like "In my honest opinion \r\n you guys can help me!". When I display this field on my report, the lines don't "break" as expected... what should I do?
相关问题
- Bulk update SQL Server C#
- SQL to Parse a Key-Value String
- Get path of node in tree
- How to evaluate an input in the WHERE clause
- Delete all records in table which have no referenc
相关文章
- How to truncate seconds in TSQL?
- SQL identity (1,1) starting at 0
- SQL Server Reporting Services - Set default value
- SQL Group by Count of Counts
- How to generate sequential row number in tsql?
- Sql insert if row does not exist
- Why not “Invalid column name XYZ” error in subquer
- Using Dapper-dot-net, how do I map SQL uniqueident
Found and answer:
Right Click textbox -> Expression and then:
=Fields!YourColumn.Value.ToString().Replace(",",vbCrLf)
You can use this Expression: