访问报表传递参数到子报表查询
我有一份访问报告,其中包含有关给定工作的信息。我正在尝试添加一个子报告,该子报告将显示有关该作业的一些详细信息,但我需要将作业编号传递到第二个报告使用的查询中。在access vba中这是如何完成的?
在显示子报表之前,是否有一些命令可以让我使用传递的参数运行查询?
I have an access report which contains information about a given job. I'm trying to add a subreport that will display some detail information about that job, but I need to pass the job's number into the query the 2nd report uses. How is this done in access vba?
Is there some command which will let me run the query with the passed parameter before I display the subreport?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将子报表连接到主报表的最简单方法是使用 LinkMasterFields/LinkChildFields 属性。
The simplest way to connect a subreport to a main report is using the LinkMasterFields/LinkChildFields properties of the subreport control.