Tablix Property in Report Builder 3.0

2

I would like to know if there is any property in Tablix that tells me if the field is in the status expanded or collapsed ?

I want to display some information in a column only if the left field is expanded. The idea would look something like this:

=IIF(Fields!DivisionT.Expanded = False, "", First(Fields!QtdeApr.Value))

Do you know of any way to do this?

    
asked by anonymous 21.02.2014 / 15:32

1 answer

0

I've figured out how to do what I want. I do not need to use any expressions feature, just use the visibility property of the field in question.

Remembering: " I want to display some information in a column only if the left field is expanded. " The solution is :

  • Right-click the field on the right (field that should appear only if ...).
  • Select Visibility property
  • Select Hide
  • In the Combo Box below this option select the name of the field on the right.

The result is that the right field will always start hidden, but when the left field is expanded, the right field will appear.

Result achieved!

    
24.02.2014 / 18:26