SSRS Parameter update field

99 views Asked by At

I need to update parameter names in my Report based on "Language" parameter value. So, when i choose one language, other parameter names should change.

Is it possible? If yes, is it possible from Report Builder?

3

There are 3 answers

1
Hannover Fist On BEST ANSWER

If by Parameter Names you mean the values displayed, then yes you can have one parameter selection update another. A typical example would be to choose a country in one parameter and then choose a city from that country in a second parameter. It's called Cascading Parameters.

The basic idea is that each parameter will be based on a query and each query will use the previous parameter.

Country dataset for @COUNTRIES parameter:

SELECT COUNTRY FROM COUNTRIES

City dataset based on other parameter for @CITIES parameter:

SELECT CITY FROM CITIES WHERE COUNTRY IN (@COUNTRIES)

Here's some more information from MSDN

0
Hari On

You can not change the other parameter names based on one parameter.

0
Ahsan Tariq On

It is not possible to update parameter name, as parameters are mapped in dataset from the query or stored procedure running on the back end, so there is no such way to update that query/stored procedure parameter name once the SSRS report is running.