I am trying to get a text box and tablix to toggle their visibility based on an expression.
I have tried the following:
=IIF(First(Fields!Supported.Value, "FooDataSet") = "true", True, False)
However, this will not work for me. I'm using the 2010 version and using it in local mode.
I also tried writing custom code to see if that would work:
Public Function ToggleVisibility(ByVal visible As string) As Boolean
Dim isVisible As Boolean = False
If visible = "true" Then
isVisible = True
End If
Return isVisible
End Function
Then I use it in the "Show or hide based on an expression" under the Visibility item in the text box and tablix properties.
=Code.ToggleVisiblity(First(Fields!Supported.Value, "FooDataSet"))
This also does not work for me.