Hi,
How can i get a column in an SSRS 2005 report to render control chars like new lines and tabs?
For example:
SELECT
VW.System_name + CHAR(13) + CHAR(9) + ' > ' + VW.PTS_NAME + CHAR(13) + CHAR(9) + CHAR(9) + ' > ' + VW.FEED_NAME as Name
In SSRS (and SSMS Results to Grid Mode) table will render as:
TRIPLE > HYBRIDS > HYBRID_CASHFLOWS
But i would like (as rendered in SSMS Results to Text Mode):
TRIPLE
> HYBRIDS
> HYBRID_CASHFLOWS
How can this be done in SSRS 2005?
Edit: the deleted answer suggesting i added CHAR(10) as well as CHAR(13) got the new lines working, but still no tabs.