user3346724
user3346724

Reputation: 23

Reporting Services - aligning Layout direction Tablix dynamic

Deal All,

Is there a way to have same report show in both layout direction based on parameter? I have two data set one for label and one for data based on specific parameter show the labels needed and the data needed but i am unable to switch the lay out direction it keeps LTR. I need if anyone have an idea to change the layout direction from parameter. I am having 50 reports and i don't like to have 150 reports because i am having 3 language. I don't need to change the design of reports if there a new adding columns or changing columns. I did it in data base by sending paramater name of the report and then get the dataset for it and then use the parameter of language to get label and data.

thanks in advance

Upvotes: 1

Views: 2475

Answers (2)

Atie
Atie

Reputation: 11

Please right click on the report and choose view code or press F7 and insert below code for the field:

<Style>
     <FontFamily />
     <TextAlign>Right</TextAlign>
</Style>

and

<Direction>RTL</Direction>

Upvotes: 1

HCL
HCL

Reputation: 36815

I dont know if this helps, because I have no experience with RTL, however if you select a TextBox and open the properties via F4, you can select for the text direction not only LTR or RTL but also an expression. Maybe this gives you the flexibility, you are looking for?

enter image description here

Upvotes: 3

Related Questions