Software Development Network>> SQL Server>> 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.thxla
Yes, you can conditionally set the visibility on both the row and / or group based on the value.
suppress the display of a txt box when null
Boris C
= IIF(CSTR(Fields!EvaluatedField)="", "", "The Title")
I hope it helps you
Joshua Belden
Dan-el
Yes, you can conditionally set the visibility on both the row and / or group based on the value.
Bilbob
Is there a way to stop the entire line from displaying on the report if the field is null
thx