Groups | Blog | Home
all groups > sql server reporting services > may 2005 >

sql server reporting services : carriage return in label


John
5/24/2005 12:49:31 PM
Hi, any way to code a linefeed/carriage return in a label? I need it for
labels in a pie graph (description on line one, value on line 2 of pie graph
series description).

Any suggestions welcome!

Thanks,
John
Robert Bruckner [MSFT]
5/24/2005 4:41:10 PM
Just use an expression similar to this for the datapoint label expression:
=Fields!Description.Value & vbcrlf & Sum(Fields!X.Value)

--
This posting is provided "AS IS" with no warranties, and confers no rights.

[quoted text, click to view]

baseLogiK
5/24/2005 7:15:47 PM
You can also try using System.Environment.NewLine as vbcrlf may not
always be interpreted correctly depending on the report format (PDF,
Excel, HTML,...) you use.

Q

[quoted text, click to view]
John
5/26/2005 10:18:12 AM
Works! Thx!

[quoted text, click to view]
AddThis Social Bookmark Button