4
votes

Platform: RDLC report Tool: Microsoft Visual Studio 2010

In RDLC reports, is there a way to left and right align two different expression in the same textbox, as one of the text need to start from left side and the other from the right side of the textbox?

1
try textbox property -> alignment -> horizontal ->expression builder =iif(Fields!name.Value>1,"Left","Right")nazark

1 Answers

4
votes

Try following

in RDLC designer textbox property -> alignment -> 
horizontal ->
expression builder 
=iif(Fields!name.Value= "check","Left","Right")