相同值的双参数
是否可以让2个报表参数设置相同的实际参数?例如,用户应该能够输入 ID,或者从下拉列表中选择它 - 以便查询获取该 ID 并运行该 ID 的过程。
Is it possible to have 2 report parameters set the same actual parameter? For example, the user should either be able to type in an ID, or select it from a dropdown list - for the query to then take that id and run the proc for that id.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个参数只会显示一次。所以它应该是文本框或下拉菜单。
但是您可以为 ID 创建 Param_1,为下拉列表创建 Param_2,并使用 Value=IIF(Parameters!Param_2.Value = Nothing,Parameters!Param_1.Value,Parameters!Param_2.Value) 创建隐藏 Param_3
One parameter will be displayed just once. So it should be either textbox or dropdown.
But you can create Param_1 for ID, Param_2 for dropdown list and hidden Param_3 with Value=IIF(Parameters!Param_2.Value = nothing, Parameters!Param_1.Value, Parameters!Param_2.Value)