Can you refer to text boxes in ssrs report from inline code

Is it possible to reference the textbox from inline ssrs report code. I would like to show or hide a textbox based on a condition.

+2


source to share


2 answers


The best way to do this is to set a condition on the visible property of your textbox. For example, the Visibility.Hidden property of your textbox, put your condition like this:

=If(CONDITION, True, False)

      



So if your condition is True - set Hidden = True and if your condition is False-set Hidden = False

+1


source


You can use the ReportItems collection ...



+5


source







All Articles