HI,
=SWITCH(
LEN(Fields!Comment.Value) > 1000,
REPLACE(REPLACE(REPLACE((LEFT(Fields!Comment.Value,1000)+"...")," "," "),"<","<"),">",">"),
True,
REPLACE(REPLACE(REPLACE(Fields!Comment.Value," "," "),"<","<"),">",">")
)
me using above html exprression for one Column. but it's not wrapping text in correctly. E.G.
Ram is going to london.
but out put in report like this:--
Ram is going to lo
ndon.
Regards,
Akhil