Link to home
Start Free TrialLog in
Avatar of thayduck
thayduckFlag for United States of America

asked on

SSRS 2008: Count alphanumeric characters in a field

I have a SSRS 2008 report.
I have a textbox that holds the customer name.
If that customer name has more than 50 alphanumeric characters in it, I want to change the font size in that texbox to 6.37pt otherwise i want it to be 6.5pt.
Can this be done and how ?
ASKER CERTIFIED SOLUTION
Avatar of markterry
markterry

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of thayduck

ASKER

This is how I am using your solution.
Thanks..

=iif(LEN(Fields!colltype.Value) > 7, "6.37pt", "6.5pt")