MS Access 交叉表查询参数
有没有办法像选择查询一样在查询中引用表单的组合/文本框?
我通常在选择查询的条件中使用类似的东西:
like forms!frmMain.qTitleofSomething&* (access adds the brackets for me)
但这在交叉表查询中不起作用? 我刚刚发现。 有没有一种方法可以在不设置多个交叉表的情况下完成同类参数控制?
Is there a way to reference a form's combo/text box within the query like a select query?
I usually use something like this in a select query's criteria:
like forms!frmMain.qTitleofSomething&* (access adds the brackets for me)
but this does not work in a crosstab query?? which I just found out. is there a way to accomplish the same kind of parameter control without setting up multiple crosstabs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望引用表单,则需要向查询添加参数。您可以通过在查询设计窗口中右键单击或在 SQL 视图中键入参数来完成此操作。 您最终应该得到如下内容:
Short 指的是字段的数据类型。 这些类型包含在下拉列表中,可通过在查询设计窗口中右键单击并选择参数来访问。
You need to add a parameter to the query if you wish to reference a form You can do this by right-clicking in the query design window or by typing it into the SQL view. You should end up with something on the lines of:
Short refers to the data type of the field. The types are included in a drop down list available from right-clicking in the query design window and selecting Parameters.