The RDLX and RDLX Dashboard Reports are reports with multiple sections. You can control the visibility of the initial state of a section using Hidden property.
This property controls the visibility of the report sections based on the expression that you specify or the value you set, that is, True or False. If you want to hide the report page, set the property to True. In case you want to conditionally hide the report page, enter a suitable expression.
Let us assume that the report has few sections and we want to hide one of the sections. The procedure to hide a section in RDLX and RDLX Dashboard Reports based on user input is described below.
Copy Code
|
|
---|---|
=IIF(Parameters!ShowHideParam.Value=True, True, False) |