Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个报告,它将有一个参数指定,而不是它应该是一个图表或表格。我想要做的只是根据他们在该下拉列表中选择的值隐藏和显示正确的元素。这可能吗,如果可以,我将如何处理?
试试这个 :
IIf(Parameters!YourParameterName.Value == "Something", True, False)
上面的表达式应该写在表格的可见性属性中