Supressing tables

  • Hi,

    I have a report with several tables. Some of these tables will or will not have data depending on the parameter to run the report. If the table has data then I want to display that data, if not then I don't want the table to display at all.

    There are options to hide the table or display a message to say that there's no data but I don't know how to have the table appear or not at all.

    thanks,

    Paul

  • I may have misundestood this but if you go into the table properties > visibility tab you could add an expression along the lines of below to define whether the table is visible or not?

    =IIF(Parameters!parVersion.Value=1 ,FALSE,TRUE)

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

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