Harsh Singhi
Harsh Singhi

Reputation: 117

How to Left align and right align two different expression in the same text box in RDLC reports?

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?

Upvotes: 4

Views: 3759

Answers (1)

nazark
nazark

Reputation: 1240

Try following

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

Upvotes: 4

Related Questions