Mandar
Mandar

Reputation: 379

Text alignment in textbox in SSRS

I have developed SSRS report where in When Text inside textbox is longer than length of the textbox, it is shifting to next line.But while shifting, it is missing the alignment. For E.g. : Queue Modification Number

Queue Modification Number

I have already tried alignment option in textbox properties. There is one more property'SpaceBefore' but I am not sure how it works since it is just having Expression as value.

Upvotes: 0

Views: 5898

Answers (2)

Mahmoud Bayoush
Mahmoud Bayoush

Reputation: 59

Make sure you set direction rtl or ltr when you add textbox.

Upvotes: 1

april4181
april4181

Reputation: 596

You can use the ListLevel or Padding properties on your textbox to change the indent. They do the same thing, but padding gives you more control over how large a space you want to indent.

Here's an example from a report I made that uses the lookupset function to return multiple lines. In this picture, the second row of the tablix returns multiple lines.

NoAlignment

Here's that same report with the listlevel property = 2 for ItemNumber and =3 for description.

enter image description here

Just select the textbox you want to update, click on properties and change the cell padding or the listlevel to get the indent you want. You may not be able to highlight several textboxes at once to do this and may have to modify each individually. (Annoying, I know!)

Upvotes: 1

Related Questions