ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 哪位大神能写手动编号转为自动编号的代码?

[复制链接]

TA的精华主题

TA的得分主题

发表于 2021-1-17 22:15 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
晨晓之黎 发表于 2021-1-17 01:01
sylun老师,我刚测试了你的代码,表格内的数字单级编号效果不错!转为自动编号和手动编号完全一致!太厉 ...

按楼主新要求增加了处理小写字母编号部分,可试试。
原代码本来就提供了删除原自动编号的代码行,只是为了方便对照而将其注释掉。
该自动编号是多级的,会根据其前一级依次自动重新编号。因文档前面目前中有符合编号格式的段落,程序会将其处理,楼主可手动取消其自动编号。
建议楼主多了解一引起使用宏的知识,当然最好能读懂甚至会写一点,或修改一下。
  1. Sub test()
  2.     Dim i As Integer
  3.     Dim myListTemplate As ListTemplate
  4.    
  5.     Set myListTemplate = ListGalleries(wdOutlineNumberGallery).ListTemplates(1)
  6.     For i = 1 To 5
  7.         With myListTemplate.ListLevels(i)
  8.             .NumberFormat = Choose(i, "%1.", "%1.%2", "%1.%2.%3", "%4.", "%5.")
  9.             .TrailingCharacter = wdTrailingTab
  10.             .NumberStyle = IIf(i < 5, 0, 4)
  11.             .NumberPosition = 0
  12.             .Alignment = wdListLevelAlignLeft
  13.             .TextPosition = 21
  14.             .ResetOnHigher = True
  15.             .StartAt = 1
  16.         End With
  17.     Next
  18.    
  19.     i = 0
  20.     Application.ScreenUpdating = False
  21.     With ActiveDocument.Content.Find
  22.         .Text = "[0-9][0-9.]@[^9^32]"
  23.         .MatchWildcards = True
  24.         Do While .Execute = True
  25.             With .Parent '假设1级手动编号在表外,2-4级编号均在表内第1列,否则不处理
  26.                 If .Information(wdWithInTable) = False And .Start = .Paragraphs(1).Range.Start And Right(.Text, 2) = "." & vbTab Then
  27.                     i = i + ApplyListTemp(.Duplicate, myListTemplate, 1)
  28.                 ElseIf .Information(wdWithInTable) = True And .Start = .Paragraphs(1).Range.Start And UBound(Split(.Text, ".")) = 1 Then
  29.                     If Right(.Text, 2) = ". " And .Cells(1).ColumnIndex = 1 Then
  30.                          i = i + ApplyListTemp(.Duplicate, myListTemplate, 4)
  31.                     ElseIf .Cells(1).ColumnIndex = 1 Then
  32.                         i = i + ApplyListTemp(.Duplicate, myListTemplate, 2)
  33.                     End If
  34.                 ElseIf .Information(wdWithInTable) = True And .Start = .Paragraphs(1).Range.Start And UBound(Split(.Text, ".")) = 2 Then
  35.                     If .Cells(1).ColumnIndex = 1 Then i = i + ApplyListTemp(.Duplicate, myListTemplate, 3)
  36.                 End If
  37.             End With
  38.         Loop
  39.         
  40.         .Parent.WholeStory   '处理表格内首列的手动小写字母编号
  41.         .Text = "[a-z].^9"
  42.         Do While .Execute = True
  43.             With .Parent
  44.                 If .Information(wdWithInTable) = True And .Start = .Paragraphs(1).Range.Start Then _
  45.                     If .Cells(1).ColumnIndex = 1 Then i = i + ApplyListTemp(.Duplicate, myListTemplate, 5)
  46.             End With
  47.         Loop
  48.     End With
  49.    
  50.     Application.ScreenUpdating = True
  51.     MsgBox "共修改了" & i & "个段落", vbInformation
  52. End Sub

  53. Function ApplyListTemp(myRange As Range, LT As ListTemplate, i As Integer) As Integer
  54.     With myRange
  55.         .ListFormat.ApplyListTemplateWithLevel LT, True, wdListApplyToWholeList, wdWord10ListBehavior, i
  56.         .Paragraphs(1).Range.HighlightColorIndex = wdYellow  '突出显示经修改段落
  57.         .Text = Empty '删除原非自动编号
  58.     End With
  59.     ApplyListTemp = 1
  60. End Function
复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-1-18 15:31 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 晨晓之黎 于 2021-1-18 18:27 编辑
sylun 发表于 2021-1-17 22:15
按楼主新要求增加了处理小写字母编号部分,可试试。
原代码本来就提供了删除原自动编号的代码行,只是为 ...

谢谢sylun老师!可以了!我这还有手动多级编号(1-7级标题),项目符号(黑色圆、白色圆、实力方形)这些种常用的,能不能请老师帮忙写转为自动的?能否加QQ?方便沟通,给你示例文件

TA的精华主题

TA的得分主题

发表于 2021-1-18 15:41 来自手机 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
晨晓之黎 发表于 2021-1-18 15:31
谢谢sylun老师!可以了!我这还有手动多级编号(1-7级标题),项目符号(黑色圆、白色圆、实力方形)这些 ...

With ActiveDocument.Content.Find
  .Text = "[0-9][0-9.]@[^9^32]"
  .MatchWildcards = True

现在是手动到自动,那天,要自动到手动,难度估计更大。

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-1-18 18:27 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
本帖最后由 晨晓之黎 于 2021-1-18 18:55 编辑
zpy2 发表于 2021-1-18 15:41
With ActiveDocument.Content.Find
  .Text = "[0-9][0-9.]@[^9^32]"
  .MatchWildcards = True

没有啊,现在一直都是转为自动的With ActiveDocument.Content.Find
  .Text = "[0-9][0-9.]@[^9^32]"
  .MatchWildcards = True
这个是什么意思?我试了没反应

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-24 01:07 , Processed in 0.030198 second(s), 7 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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