0

I am building a report in Report Builder 3.0 and require spacing that is conditional on the length of a parameter. Because Report Builder 3.0 does not have the LENGTH function that it did in 1.0, is there a workaround? I want to avoid solutions that white-out text.

user219454
  • 81
  • 1
  • 8

1 Answers1

1

You can measure the lenght of a string using the LEN function e.g.

= Len(Parameters!ReportParameter1.Value)

An alternative is to use the string length property

= Parameters!ReportParameter1.value.Length
niktrs
  • 9,858
  • 1
  • 30
  • 30