ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

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

[复制链接]

TA的精华主题

TA的得分主题

发表于 2021-1-14 17:09 | 显示全部楼层 |阅读模式
本帖最后由 晨晓之黎 于 2021-1-14 17:10 编辑

127页表格的编号太多了,一个一个设置为自动编号,这样效率太低了。表格上的手动单级编号转为自动编号,效果如下:
QQ截图20210114170014.png

YXC02_CH4.2.1g 3.5.05b SW VERIF REPORT Revolution CORE S5-----------------11111.rar

1.01 MB, 下载次数: 161

TA的精华主题

TA的得分主题

发表于 2021-1-14 23:02 | 显示全部楼层
试试查找替换,觉得查找替换可以实现

TA的精华主题

TA的得分主题

发表于 2021-1-14 23:03 | 显示全部楼层
试试查找替换,应该可以可以

TA的精华主题

TA的得分主题

发表于 2021-1-15 08:36 来自手机 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2021-1-15 16:00 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
Sub bh()
    Dim rg As Range
    Set rg = VBA.IIf(Selection.Type = wdSelectionIP, ActiveDocument.Range, Selection.Range)
    rg.Fields.Unlink
    rg.ListFormat.ConvertNumbersToText
    With rg.Find
        .ClearFormatting
        .Text = "^t"
        .MatchWildcards = True
        .Replacement.ClearFormatting
        .Replacement.Text = ""
        .Execute Replace:=wdReplaceAll
    End With
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-1-15 20:55 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2021-1-16 07:19 来自手机 | 显示全部楼层
晨晓之黎 发表于 2021-1-15 20:55
markdown是什么?我不懂

https://m.runoob.com/markdown/md-tutorial.html

TA的精华主题

TA的得分主题

发表于 2021-1-16 20:20 | 显示全部楼层
可试试:
  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 4
  7.         With myListTemplate.ListLevels(i)
  8.             .NumberFormat = Choose(i, "%1.", "%1.%2", "%1.%2.%3", "%4.")
  9.             .TrailingCharacter = wdTrailingTab
  10.             .NumberStyle = wdListNumberStyleArabic
  11.             .NumberPosition = CentimetersToPoints(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.     End With
  40.     Application.ScreenUpdating = True
  41.     MsgBox "共修改了" & i & "个段落", vbInformation
  42. End Sub

  43. Function ApplyListTemp(myRange As Range, LT As ListTemplate, i As Integer) As Integer
  44.     With myRange
  45.         .ListFormat.ApplyListTemplateWithLevel LT, True, wdListApplyToWholeList, wdWord10ListBehavior, i
  46.         .Paragraphs(1).Range.HighlightColorIndex = wdYellow
  47. '        .Text = Empty '删除原非自动编号
  48.     End With
  49.     ApplyListTemp = 1
  50. End Function
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-1-17 01:01 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册

sylun老师,我刚测试了你的代码,表格内的数字单级编号效果不错!转为自动编号和手动编号完全一致!太厉害了!要是都删除原非自动编号就完美了!多级编号1-4级有影响,只要处理表格内单级编号就好了!a.b.c编号能不能转为自动编号?谢谢!

TA的精华主题

TA的得分主题

发表于 2021-1-17 19:13 来自手机 | 显示全部楼层
太深奥了,扑通,扑通掉河里了
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-24 01:04 , Processed in 0.035468 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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