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
Post a Comment