ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 如何删除标题前的文本编号(已有自动编号)

[复制链接]

TA的精华主题

TA的得分主题

发表于 2017-11-6 09:11 | 显示全部楼层 |阅读模式
本帖最后由 wan12327 于 2017-11-7 11:07 编辑

各位老师好!我整理了多级列表的自动化编号代码。目前需要实现两个目标:
A.     运行下列程序后,删除标题前方的文本编号,保留自动编号
B.     调整自动编号的缩进情况及与文本的间隔


以下是我整理的代码,希望老师给与指导:

Sub 多级列表设置()
    Dimi As Paragraph
   Call ListTitle(ActiveDocument)
    ForEach i In ActiveDocument.Paragraphs
       If i.Range Like "#.#.#.#*" = True And i.Range.Font.Bold = TrueThen
           i.Style = wdStyleHeading4    '标题4是以1.1.1.1的形式开头的段落
           i.LineSpacing = LinesToPoints(1)
           i.SpaceAfter = 6
           i.SpaceBefore = 12
           i.Range.Font.Size = 11
       ElseIf i.Range Like "#.#.#*" = True And i.Range.Font.Bold =True Then
           i.Style = wdStyleHeading3    '标题3是以1.1.1的形式开头的段落
           i.LineSpacing = LinesToPoints(1)
           i.SpaceAfter = 6
           i.SpaceBefore = 12
           i.Range.Font.Size = 14
       ElseIf i.Range Like "#.#*" = True And i.Range.Font.Bold = TrueThen
           i.Style = wdStyleHeading2    '标题2是以1.1形式开头的段落
           i.LineSpacing = LinesToPoints(1)
           i.SpaceAfter = 6
           i.SpaceBefore = 12
           i.Range.Font.Size = 16
       ElseIf i.Range Like "#*" = True And i.Range.Font.Bold = TrueThen
           i.Style = wdStyleHeading1    '标题1是以1形式开头的段落
           i.LineSpacing = LinesToPoints(1)
           i.SpaceAfter = 6
           i.SpaceBefore = 12
           i.Range.Font.Size = 22
       End If
   Next

End Sub

Sub ListTitle(doc As Document)
    DimLtTemp As ListTemplate, i As Integer
    SetLtTemp = doc.ListTemplates.Add(True)
    Fori = 1 To 4
       With LtTemp.ListLevels(i)
           If i = 1 Then .NumberFormat = "%1": .NumberStyle = 0
           If i = 2 Then .NumberFormat = "%1.%2": .NumberStyle = 0
           If i = 3 Then .NumberFormat = "%1.%2.%3": .NumberStyle = 0
           If i = 4 Then .NumberFormat = "%1.%2.%3.%4": .NumberStyle = 0
       End With
    Next

End Sub
123.png

多级列表代码待改进.zip

20.21 KB, 下载次数: 9

测试附件

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-11-8 09:46 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
杜老师的代码完美地解决了我的问题:

Sub 多级列表样式运用()
    r1$ = "^13[0-9]{1,}"
    r2$ = "^13[0-9]@.[0-9]{1,}"
    r3$ = "^13[0-9]@.[0-9]@.[0-9]{1,}"
    r4$ = "^13[0-9]@.[0-9]@.[0-9]@.[0-9]{1,}"
    a = Array(r1, r2, r3, r4)
    Call ListTitle(ActiveDocument)
    ActiveDocument.Content.InsertBefore vbCr
    For j = UBound(a) To 0 Step -1
        With ActiveDocument.Content.Find
            Do While .Execute(a(j), , , 1)
                With .Parent
                    .Start = .Start + 1: x = Len(.Text): ksr = .Text
                    .Expand 4: .Collapse
                    If .MoveWhile(ksr, x) = x Then
                        .MoveStart , -x: .Text = Empty
                        .Style = ActiveDocument.Styles("标题 " & j + 1)
                    Else
                        .Move 4, 1
                    End If
                End With
            Loop
        End With
    Next
    ActiveDocument.Paragraphs(1).Range.Text = Empty
End Sub

Sub ListTitle(doc As Document)
    Dim LtTemp As ListTemplate, i As Integer
    Set LtTemp = doc.ListTemplates.Add(True)
    For i = 1 To 4
        With LtTemp.ListLevels(i)
            If i = 1 Then .NumberFormat = "%1"
            If i = 2 Then .NumberFormat = "%1.%2"
            If i = 3 Then .NumberFormat = "%1.%2.%3"
            If i = 4 Then .NumberFormat = "%1.%2.%3.%4"
            .NumberStyle = 0  '37
            .TrailingCharacter = 2: .StartAt = 1: .ResetOnHigher = True
            .TextPosition = InchesToPoints(0.1 * i)
            .NumberPosition = InchesToPoints(0.1 * (i - 1))
            '.LinkedStyle = "标题 " & i
        End With
    Next
End Sub
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-12 12:26 , Processed in 0.019885 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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