ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 835|回复: 2

[求助] 检测table的引用

[复制链接]

TA的精华主题

TA的得分主题

发表于 2017-10-24 18:03 | 显示全部楼层 |阅读模式
本帖最后由 kerry786032 于 2017-10-24 18:06 编辑

正确的引用顺序应该是,table1,2,3,4。如果table2出现在table1前面了,就要报错,但即使table 第一次引用是table 2,但如果table 1后面还出现了table 2,也不用给第一处的table 2 报错
同理类推其他table 3 4 ...
但如果table 2只出现在table 1前面,table 1后面一次也没出现,那么需要报错:在table 2第一处: Table 2 should be cited after Table 1.
同理
table 3 也必须要在table 2后面出现,如果table 2 后面一次也没出现table 3,那么需要在table 3第一处: Table 3 should be cited after Table 2.

下面是我写的代码,请老师帮忙修改下,谢谢。
Sub table_order()
    Dim last_called As Integer, reference_by_numbered_list As Integer
    last_called = 0
    selection.Find.Font.Bold = ture
    selection.HomeKey Unit:=wdStory
    'Selection.Find.ClearFormatting
    With selection.Find
        .Text = "Table [0-9]{1,}"
        .Format = True
        .Forward = True
        .Wrap = wdFindContinue
        .MatchWildcards = True
        Do
            .Execute
            If Not .Found Then
                Exit Do
            ElseIf .Found Then
                  last_called = t_order(selection.Text, last_called)
                End If

        Loop
    End With   
    'Selection.EndKey unit:=wdStory, Extend:=wdExtend
    selection.HomeKey Unit:=wdStory, Extend:=wdMove
End Sub

Function t_order(AnyStr As String, last_call As Integer)
    Dim RegEx
    Set RegEx = CreateObject("vbscript.regexp")
    With RegEx
        .Global = True
        .Pattern = "\d+"
    End With
    Set sql = RegEx.Execute(selection.Text)   
    For i = 0 To sql.count - 1
       If Val(sql(i)) > last_call + 1 Then
            'Selection.Comments.Add Range:=Selection.Range, Text:="incorrect citation order, table " & sql(i) & " detected after table " & last_call & ". "
            selection.Comments.Add Range:=selection.Range, Text:="incorrect citation order, table " & sql(i) & " detected before table " & last_call + 1 & ". "
            'Selection.Comments.Add Range:=Selection.Range, Text:="incorrect citation order. "
        Else
   If Val(sql(i)) > last_call Then
                    last_call = Val(sql(i))
                End If

        End If
        If i + 1 <= sql.count - 1 Then    'make sure there is still one entry ahead
            If Val(sql(i)) >= Val(sql(i + 1)) Then
                selection.Comments.Add Range:=selection.Range, Text:="detected " & sql(i) & " before " & sql(i + 1) & ". This is wrong citation order."
            End If
        End If
    Next i
  t_order = last_call
    Set RegEx = Nothing
    Set dict = Nothing
End Function
检查大的数是不是在小的数前面先出现,然后报错,我已经可以做到了,但是如果大的数在小的数后面再次出现,那么不报错,我不知道怎么写。真的难死我了,求老师帮忙。

table引用检测.zip

36.01 KB, 下载次数: 2

TA的精华主题

TA的得分主题

发表于 2017-10-24 21:45 | 显示全部楼层
本帖最后由 duquancai 于 2017-10-24 22:11 编辑

完全不知所云!!!不知道你到底想干什么?看了你的附件,只能猜一猜了!!!

Sub table_order()
    With ActiveDocument.Content.Find
        Do While .Execute("[0-9]", , , 1)
            Set r = .Parent.Paragraphs(1).Range
            r.End = r.End - 1
            r.Comments.Add r, "incorrect citation order, table " & r.Text & " . "
        Loop
    End With
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-10-25 08:39 | 显示全部楼层
duquancai 发表于 2017-10-24 21:45
完全不知所云!!!不知道你到底想干什么?看了你的附件,只能猜一猜了!!!

Sub table_order()

这个问题是说的不清楚,感谢老师提供解决思路,我自己研究研究。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-12 13:29 , Processed in 0.024089 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表