sql server - SSRS filteration on the basis of length of content in the cell -


how can filter report on basis of number of characters in cell. e.g have column name , want show names in report length of name less or equal 6. tried expression= name, operator=<=, , value=lenth(name) not working. please help.

you should use length (len) function character length of field. expression like:

=len(fields!yourfield.value)  

operator: <=

value: 6

if length of field less or equal 6, text in field displayed, otherwise data not displayed.


Comments

Popular posts from this blog

c++ - No viable overloaded operator for references a map -

java - Custom OutputStreamAppender not run: LOGBACK: No context given for <MYAPPENDER> -

java - Cannot secure connection using TLS -