Radio buttons in SSRS Report

前端 未结 7 1117
一个人的身影
一个人的身影 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 02:04

    First pass a bool value to your parameter, and then use that parameter field instead of m_dhkDentalStatusGood in the following expression:

    =iif( Fields!m_chkDentalStatusGood.Value , Chr(158), Chr(153))
    

    And change the font for that texbox to "Wingdings 2".

    NOTE: This should also appear when you export your report as PDF.

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