I've been trying to conditionally display a textbox in a 'Local' report. It is my understanding that if the visibility expression evaluates to TRUE then the textbox will be displayed. None of the following visibility expressions, all of which evaluate to true, work for me. The textbox is always hidden
Am I missing something or have I hit a bug
=TRUE
=IIF(1=1,TRUE,FALSE)
=IIF(Fields!Status.Value=0, TRUE, FALSE)

Visibility expression not working as expected.
Fendy
I assumed that the property I was setting was 'Visible' ... but it's 'Hidden'.
Therefore to toggle visibility ON i need to set 'Hidden' to FALSE. Or...
=FALSE
=IIF(1=1,FALSE,TRUE)
=IIF(Fields!Status.Value=0, FALSE, TRUE)