Radio buttons in SSRS Report

前端 未结 7 1116
一个人的身影
一个人的身影 2021-01-19 01:18

How do I add radio buttons as my parameter type in SSRS reports?

Thanks in advance, Anna

相关标签:
7条回答
  • 2021-01-19 01:40

    It is not possible to add radio buttons to the report parameter in SSRS... Multi valued parameter gets check boxes automatically, if the parameter is single select, all default values appear in drop down, its behaviour is similar to the behaviour of radio button..

    0 讨论(0)
  • 2021-01-19 01:43

    Not true, I am actually having a problem with 2 reports using the same parameter but displaying it differently. The parameter is boolean, and in one report it renders as a dropdown list and in the other it renders as a radio button list. Therefore, both are possible, the question is why is the same code being rendered differently by two different reports? Boolean True true Expand/Collapse All: False Expand All True Collapse All

    0 讨论(0)
  • 2021-01-19 01:45

    It can be done, but only for a boolean parameter - i.e. you can only have True/False, not a custom list of radio options.

    Add a parameter to your report of type 'Boolean'. 'Available Values' should be set to 'Non-queried' - but make sure to leave the grid of values completely blank.

    In the 'Default Values' section, again choose Non-Queried - but in the expression box type 'True' or 'False' (i.e. dependant upon your desired default value).

    The parameter should now render as a radio button - with the option of True/False.

    Note, this is all with the Report Designer in BIDS - I haven't tried it via the Report Builder click-once app.

    0 讨论(0)
  • 2021-01-19 01:50

    My guess is that they don't have them - at least they are not documented in the BOL help. It is equivalent in function to the list where you can only select one item.

    0 讨论(0)
  • 2021-01-19 01:52

    If you are referring to the Reporting Services web interface, you can't. Selectable value lists appear as dropdown lists. You can configure to the ability to select multiple values, which are rendered as a dropdown list of checkboxes.

    0 讨论(0)
  • 2021-01-19 01:55

    My suspicions are confirmed:

    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2414397&SiteID=1

    These msdn forums are a good resource. Most questions have already been asked ;)

    0 讨论(0)
提交回复
热议问题