How to bind multi value parameters dunamically in SSRS report

  • [font="Courier New"]Hi All,

    I got stucked in SSRS report where there are five parameters for report

    1) From Date

    2) End Date

    3) Market

    4) Party

    5) Segment

    which has to be interlinked to each other i.e when user entered From Date, End Date there is no problem to show report output but

    Actual problem starts when (I have given Market dataset parameter vlaues M000, M111, M222) and If User select Market = M000 then I want to display only those Party data set values (let say P111, P222, P333 etc) in the selection panel and When User select P111 Party he will get only those Segements which will have Party P111. Now I have tried in script as well in the design view of SSRS but I am not able to bind all above parameters dynamically and showing values in selection panel at run time.

    Thanks,

    Bhushan[/font]

  • If I understand what you're saying then what you need to do is make a dataset for Party and segemt.

    the data set would have a query along the lines of

    Select Value, Label From TableName where Party = @party.

    Then the segment dataset would have one like

    Select Value, Label from tableName where Segment = Segment.

    Then your parameters for party and segment could use these datasets to fill the available values for your parameters.

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

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