I am creating a SSRS report and i would like to give some condition for textbox. based on the condition the textbox should be visible or hidden. When the field value is no, then the text box should hide.
I am inside the textbox properties and in Visibility (fx). I gave the condition as
=IIf(Fields!IsStudent.Value = "No", True, False)
If the value is no, then my textbox => StudentDetails , should be hidden. If the value is YES, the testbox should be visible. CAn someone help me in this