Page footer and text box

  • i want to make textbox visibile and invisible based on a condition. how do i do it thru code in SSRS?

  • Go to the properties of the text box, open up the Visibility area and on the first item (Hidden) create an expression such as:

    =IIF(Fields!Country.Value="USA",TRUE,FALSE)

    The above will hide the text box if the country is USA for this row, so a return value of TRUE means hide it, and FALSE means show it.

    Good luck,

    Nigel West
    UK

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply