In SSRS 2005 in Preview tab, when I select some value on one input, corresponding valur for other input must be changed(See attach for more clearity)

  • working on on report where one input parameter value depends on selection of value of other input parameter before clicking on view Report button. Please see attach(SSRS question.png) reference

  • You may want to upload your image to an image sharing website - your attachments aren't opening.

    To chain report parameters, in your second parameter's query's WHERE clause, refer to @<first parameter's name>. If your first report parameter had a name of "YEAR", your second report parameter could have its "Available Values" setting set to "Get values from a query", and the data set query as:

    SELECT SALES.SALEDATE

    FROM SALES

    WHERE DATEPART(SALES.SALEDATE) = @YEAR

    If you selected 2015 as the "YEAR" parameter, the second parameter, hypothetical "Sales Date" would only show sales within 2015.

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

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