Access:如何生成记录集报告?
如何使用记录集(而不是查询或表)中的数据生成访问报告。 我对记录集进行了更新,这些更新也必须显示在报告中。
How can I generate a report in access with the data from a recordset (instead of a query or table). I have updates to the recordset that also must be shown in the report.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从访问Web中,您可以使用记录集的“name”属性。 您生成的代码将如下所示:
在报告中
在调用对象(模块、表单等)中
From Access Web you can use the "name" property of a recordset. You resulting code would look something like this:
In the report
In the calling object (module, form, etc.)
请更详细地解释一下。 例如,您是否希望展示该领域的过去和现在? 如果是这样,您将需要审计跟踪。 以下是 Microsoft 的示例:http://support.microsoft.com/kb/q197592/
报告是什么意思? 如果您指的是打印的纸质文档,Access 有一个很好的报告生成器。 如果您想查看数据,可以使用表单。 如果您不熟悉构建报告和表单,可以使用向导。
研究每个版本的 Access 附带的 Northwind 示例数据库总是明智的。
Please explain in more detail. For example, do you wish to show what the field was and what it is now? If so, you will need an audit trail. Here is an example from Microsoft: http://support.microsoft.com/kb/q197592/
What do you mean by report? If you mean a printed paper document, Access has a good report builder. If you mean you wish to view the data, you can use a form. If you are unfamilar with building reports and forms, there are wizards.
It is always wise to study the Northwind sample database that ships with every version of Access.