suppress the display of a txt box when null

I have a text box in a list, which i only want to display if it is not null.
How can i do this in reporting services.

thx
la



Answer this question

suppress the display of a txt box when null

  • Boris C

    You must put in the value the expression:
    = IIF(CSTR(Fields!EvaluatedField)="", "", "The Title")

    I hope it helps you

  • Joshua Belden

    Select the list item where your data objects are places, go to the properties and write for example No Data in the NoRows properties. That's all
  • Dan-el

    Yes, you can conditionally set the visibility on both the row and / or group based on the value.



  • Bilbob

    Thank you

    Is there a way to stop the entire line from displaying on the report if the field is null

    thx

  • suppress the display of a txt box when null