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

java - Ebean enhancement ignores a model -

ubuntu - How to disable Kernel Module Signing in linux -

SQL php on different pages to Insert (mysqli) -