Jatin Garg
Jatin Garg

Reputation: 85

SSRS, In cascading parameter only the last ordered parameter greys out

I have two issues with SSRS.

  1. I have cascading parameter. User selects first parameter (@place) and on that basis last two parameters (@group and @cost) should grey out. Currently Only the last parameter (@cost) greys out, not the second last (@group) getting "select a value". If I swap the order then the @group greys out and @cost does not

  2. When I run the report in my local system, the cascading parameters only works for first time. When I change the @place parameter value then the rest parameters do not update..

Update: Mock Example below: This is my dataset which gives default values to A,B,C,D reports

This is the parameter group by

This is the parameter calculation

This is the issue below. When C is selected I want both parameters to be greyed out. In first pictue, I have mentioned Null for both when C is selected

This is the issue in pic above. When C is selected I want both parameters to be greyed out. In first picture, I have mentioned Null for both when C is selected

Upvotes: 1

Views: 215

Answers (1)

Ana Iuliana Tuhasu
Ana Iuliana Tuhasu

Reputation: 237

I have created a dummy project with other fields in order to solve this scenario. My fields are LAST_DATE_EDITED, ID and FEE_AMOUNT in which ID and FEE_AMOUNT are dependent of LAST_DATE_EDITED field.

In order to do this, I created 3 datasets for each parameter. For LAST_DATE_EDITED I put only a SELECT LAST_DATE_EDITED from test table. For ID and FEE_AMOUNT I did as below:

enter image description here

In this way, I achieved the following output:

enter image description here

enter image description here

I hope that I understood correctly and this will help you.

Upvotes: 1

Related Questions