How do you hide parameters based on another parameter value in SSRS?

How do you hide parameters based on another parameter value in SSRS?

You cant enable/disable parameters based on another parameter value in SSRS standard viewer. However you can get the approximate functionality by setting a default value based on other parameters value.

How do you hide view a SSRS report parameter control dynamically at runtime?

The only way to hide an individual parameter is using the visibility checkbox in development, but as I said, all parameters should be shown in the main report. Another option is to hide all parameters at runtime (&rc: Parameters=false).

How do you GREY out a parameter in SSRS?

2 Answers

  1. Create a dataset that is based on your SpecifyDate parameter. if @SpecifyDates = ‘No’ select null as Date else select cast(‘1/1/2012’ as datetime) as Date.
  2. Set the default values for your dates to be based on this dataset.

What is parameter visibility?

Parameter visibility can be specified using the following means: • When you set up site parameters, two columns are available for each parameter: ◦ SET UP VISIBLE—Specifies if the parameter should appear in the Measure step parameter list when creating or redefining Measure steps.

What is a cascading parameter?

Cascading parameters provide a way of managing large amounts of data in a paginated report. You can define a set of related parameters so that the list of values for one parameter depends on the value chosen in another parameter. Its values are updated with a list of subcategories within the chosen category.

Can a Dataset be attached to a parameter?

Expand the Datasets node, right-click on the dataset that the parameters are to be bound to, and select Dataset Properties . Select the Parameters option in the Dataset Properties dialog, then add each parameter name from your query and match it to the appropriate report parameter (as set up in the previous step).