Reputation: 81
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.
Upvotes: 0
Views: 240
Reputation: 10066
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
Upvotes: 1