返回介绍

RecordCount 属性

发布于 2019-09-29 10:17:14 字数 1439 浏览 978 评论 0 收藏 0

返回一个 Long 对象,该对象代表数据源中记录的数字。只读。

expression.RecordCount

expression 必需。该表达式返回一个 MailMergeDataSource 对象。

说明

如果 Microsoft Word 不能确定数据源中记录的数字,RecordCount 属性会返回值 -1。

示例

本示例循环遍历数据源中的记录并验证邮政编码域(在本示例中是第六个域)是否少于五位,如果少于五位,则从邮件合并中删除该记录。如果要确保将定位代码添加到邮政编码中,可以将长度值从 5 改为 10。从而,如果邮政编码少于 10 位,就将其从邮件合并中删除。

Sub ExcludeRecords()

    On Error GoTo ErrorHandler

    With ActiveDocument.MailMerge.DataSource
        .ActiveRecord = wdFirstRecord
        Do

            'Counts the number of digits in the postal code field and if
            'it is less than 5, the record is excluded from the mail merge,
            'marked as having an invalid address, and given a comment
            'describing why the postal code was removed
            If Len(.DataFields(6).Value) < 5 Then
                .Included = False
                .InvalidAddress = True
                .InvalidComments = "The zip code for this record" & _
                    "is less than five digits. This record is" & _
                    "removed from the mail merge process."
            End If
            If .ActiveRecord <> .RecordCount Then
                .ActiveRecord = wdNextRecord
            End If
        Loop Until .ActiveRecord = .RecordCount
ErrorHandler:

    End With

End Sub

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文