0

I have a matrix in SSRS 2008 like:

Teacher [TeacherName]
# of Students [Count(studentId)]

enter image description here

What I want is to fix the width of the column. I am changing the padding values but the spaces are not going away.

  1. How can I get rid of the empty spaces for the cells
  2. How can I put a break (like \n) between name and surname? (instead of comma)

Any help would be appreciated.

Eray Balkanli
  • 7,752
  • 11
  • 48
  • 82

1 Answers1

0

In the expression for the TeacherName input:

=Fields!YourColumn.Value.ToString().Replace(",",vbCrLf)

SuperSimmer 44
  • 964
  • 2
  • 7
  • 12