Visibility expression not working as expected.

Hi,

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 Tongue Tied

Am I missing something or have I hit a bug

=TRUE

=IIF(1=1,TRUE,FALSE)

=IIF(Fields!Status.Value=0, TRUE, FALSE)



Answer this question

Visibility expression not working as expected.

  • Fendy

    OK.  rookie mistake. 

    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)


  • Visibility expression not working as expected.