相同值的双参数

发布于 2024-08-26 17:56:54 字数 80 浏览 4 评论 0原文

是否可以让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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如若梦似彩虹 2024-09-02 17:56:54

一个参数只会显示一次。所以它应该是文本框或下拉菜单。

但是您可以为 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文