ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

请教word表格处理宏问题(涉及表格制表位)

[复制链接]

TA的精华主题

TA的得分主题

发表于 2021-5-24 08:39 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
我这现有的表格处理宏有一些bug,也无法解决表格的制表位问题,还得请各位帮忙,谢谢!
Sub 表格处理()
    On Error Resume Next
    Dim t As Table, n As Long
    If Selection.Information(wdWithInTable) = True Then Selection.Tables(1).Select: n = 1
    For Each t In ActiveDocument.Tables
        If n = 1 Then Set t = Selection.Tables(1) Else t.Select
        With t
            With .Rows
                .WrapAroundText = False '取消文字环绕
                .Alignment = wdAlignRowLeft '左对齐
                .LeftIndent = CentimetersToPoints(0) '左缩进 0 厘米
                .HeightRule = wdRowHeightAtLeast '表格行高(最小值)
                .Height = CentimetersToPoints(0.65) '表格行高(0.65 厘米)
            End With
            With .Range
                With .Font '字体格式
                    .Name = "宋体"
                    .Name = "Times New Roman"
                    .Size = 10.5
                    .Kerning = 0
                    .DisableCharacterSpaceGrid = True
                End With
                With .ParagraphFormat '段落格式
                    .CharacterUnitFirstLineIndent = 0 '取消首行缩进
                    .FirstLineIndent = CentimetersToPoints(0) '取消首行缩进
                    .LineSpacingRule = wdLineSpaceSingle '单倍行距(.Space1)
                    .Alignment = wdAlignParagraphCenter
                    .AutoAdjustRightIndent = False
                    .DisableLineHeightGrid = True
                End With
                .Cells.VerticalAlignment = wdCellAlignVerticalCenter '垂直居中
            End With
            If .LeftPadding <> CentimetersToPoints(0.19) Then .LeftPadding = CentimetersToPoints(0.19) '默认单元格边距(0.19厘米)
            If .RightPadding <> CentimetersToPoints(0.19) Then .RightPadding = CentimetersToPoints(0.19) '默认单元格边距(0.19厘米)
            .AutoFitBehavior (wdAutoFitContent) '根据内容调整表格
            .AutoFitBehavior (wdAutoFitContent) '根据内容调整表格
            .Select
            .AutoFitBehavior (wdAutoFitWindow) '根据窗口调整表格
            .AutoFitBehavior (wdAutoFitWindow) '根据窗口调整表格
            With .Rows(1).Range.Font
                .Name = "宋体"
                .Name = "Times New Roman"
            End With
           Selection.Find.ClearFormatting '删除空格
           Selection.Find.Replacement.ClearFormatting
           With Selection.Find
        .Text = " "
        .Replacement.Text = ""
        .Forward = True
        .Wrap = wdFindAsk
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchByte = True
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
        End With
        Selection.Find.Execute Replace:=wdReplaceAll
        End With
    Options.DefaultBorderLineWidth = wdLineWidth050pt '调整表格线宽(表格内0.5磅,外边1.5磅)
    With Selection.Borders(wdBorderTop)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderLeft)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderBottom)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderRight)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderHorizontal)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderVertical)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    Options.DefaultBorderLineWidth = wdLineWidth150pt
    With Selection.Borders(wdBorderTop)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderLeft)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderBottom)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderRight)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
        If n = 1 Then Exit For
        Next
    End Sub

微信图片_20210524083845.png


表格格式处理宏优化.zip (17 KB, 下载次数: 16)

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-5-24 16:50 | 显示全部楼层
采用 Selection.ClearFormatting '清除文字格式即可解决问题

TA的精华主题

TA的得分主题

发表于 2021-5-24 20:09 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
楼主,制表位我并未考虑,一般表格中的文字均是居中,请试试下面的新宏:
  1. Sub 表格处理()
  2. '功能:(3合1)
  3. '1.如果选定区域,则处理选定区域表格;
  4. '2.否则,如果光标在表格中,则处理当前表格;
  5. '3.如果光标在表格外,则处理所有表格。

  6.     Dim r As Range, t As Table, c As Cell, i As Paragraph, j As Long

  7.     With Selection
  8.         If .Type = wdSelectionIP Then
  9.             If .Information(wdWithInTable) = True Then
  10.                 Set t = .Tables(1)
  11.                 Set r = .Tables(1).Range
  12.             Else
  13.                 Set r = ActiveDocument.Content
  14.             End If
  15.         Else
  16.             Set r = .Range
  17.         End If
  18.     End With

  19.     For Each t In r.Tables
  20.         With t
  21.             '取消环绕/左对齐/左缩进/行高0.9厘米
  22.             With .Rows
  23.                 .WrapAroundText = False
  24.                 .Alignment = wdAlignRowLeft
  25.                 .LeftIndent = CentimetersToPoints(0)
  26.                 .HeightRule = wdRowHeightAtLeast
  27.                 .Height = CentimetersToPoints(0.9)
  28.             End With

  29.             '清除格式
  30.             With .Range
  31.                 .Find.Execute "[^13^l]", , , 1, , , , , , "^p", 2
  32.                 .Next.InsertParagraphBefore
  33.                 .Select
  34.                 With Selection
  35.                     .MoveEnd
  36.                     .ClearFormatting
  37.                 End With
  38.                 CommandBars.FindControl(ID:=122).Execute
  39.                 With .Font
  40.                     .Size = 12
  41.                     .Color = wdColorBlue
  42.                     .Kerning = 0
  43.                     .DisableCharacterSpaceGrid = True
  44.                 End With
  45.                 With .ParagraphFormat
  46.                     .AutoAdjustRightIndent = False
  47.                     .DisableLineHeightGrid = True
  48.                 End With
  49.                 .Cells.VerticalAlignment = wdCellAlignVerticalCenter
  50.                 .Next.Delete
  51.             End With

  52.             .LeftPadding = CentimetersToPoints(0.19)
  53.             .RightPadding = CentimetersToPoints(0.19)
  54.             .AutoFitBehavior (wdAutoFitContent)
  55.             .Select
  56.             .AutoFitBehavior (wdAutoFitWindow)

  57.             '删除空段
  58.             For Each c In .Range.Cells
  59.                 For Each i In c.Range.Paragraphs
  60.                     If Asc(i.Range) = 13 And Len(i.Range) = 1 Then i.Range.Delete
  61.                 Next
  62.                 With c.Range.Paragraphs
  63.                     If .Count > 1 And Len(.Last.Range) = 2 Then .Last.Previous.Range.Characters.Last.Delete
  64.                 End With
  65.             Next

  66.             '表头加粗
  67.             .Cell(1, 1).Select
  68.             Selection.SelectRow
  69.             With Selection.Font
  70.                 .NameFarEast = "黑体"
  71.                 .Bold = True
  72.                 .Color = wdColorRed
  73.             End With
  74.         End With
  75.     Next
  76. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-5-25 10:26 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
413191246se 发表于 2021-5-24 20:09
楼主,制表位我并未考虑,一般表格中的文字均是居中,请试试下面的新宏:

老大,可否能帮我加上删除空段的代码?万分感谢!

Sub 表格处理2()
    Selection.ClearFormatting '清除文字格式
    CommandBars("Styles").Visible = False '字体格式
    Selection.Font.Name = "宋体" '中文字体格式
    Selection.Font.Name = "Times New Roman" '西文字体格式
    Selection.Font.Size = 10.5 '5号字体
    Selection.SelectCell
    Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter '文字居中
    Selection.Cells.VerticalAlignment = wdCellAlignVerticalCenter
    Selection.Tables(1).Rows.Alignment = wdAlignRowCenter
    Selection.Tables(1).Rows.LeftIndent = CentimetersToPoints(0)
    Selection.Rows.HeightRule = wdRowHeightAtLeast
    Selection.Rows.Height = CentimetersToPoints(0.65) '表格行高(0.65 厘米)
    Selection.Tables(1).AutoFitBehavior (wdAutoFitContent) '根据内容调整表格
    Selection.Tables(1).AutoFitBehavior (wdAutoFitContent)
    Selection.Tables(1).AutoFitBehavior (wdAutoFitWindow) '根据窗口调整表格
    Selection.Tables(1).AutoFitBehavior (wdAutoFitWindow)
    Options.DefaultBorderLineWidth = wdLineWidth050pt '调整表格内线宽内0.5磅
    With Selection.Borders(wdBorderTop)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderLeft)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderBottom)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderRight)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderHorizontal)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderVertical)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    Options.DefaultBorderLineWidth = wdLineWidth150pt '调整表格外线宽1.5磅
    With Selection.Borders(wdBorderTop)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderLeft)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderBottom)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
    With Selection.Borders(wdBorderRight)
        .LineStyle = Options.DefaultBorderLineStyle
        .LineWidth = Options.DefaultBorderLineWidth
        .Color = Options.DefaultBorderColor
    End With
End Sub

TA的精华主题

TA的得分主题

发表于 2021-5-25 17:14 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
楼主,如果你说的“删除空段”是指表格内的空段,则上面《表格处理》宏已经包括了!还请试用下面的宏:
  1. Sub 删除空行()
  2.     Dim i As Paragraph
  3.     For Each i In ActiveDocument.Paragraphs
  4.         If Asc(i.Range) = 13 Then i.Range.Delete
  5.     Next
  6. End Sub
复制代码
  1. Sub 删除表格空行()
  2.     Dim t As Table, s As Long, r As Row
  3.     If Selection.Information(wdWithInTable) = True Then s = 1
  4.     For Each t In ActiveDocument.Tables
  5.         If s = 1 Then Set t = Selection.Tables(1)
  6.         With t
  7.             If .Uniform = False Then GoTo sk
  8.             With .Range
  9.                 .Rows.WrapAroundText = False
  10.                 .Next.InsertParagraphBefore
  11.                 .Find.Execute "[^13^l]", , , 1, , , , , , "^p", 2
  12.             End With
  13.             .Select
  14.             With Selection
  15.                 .MoveEnd
  16.                 CommandBars.FindControl(ID:=122).Execute
  17.                 .Characters.Last.Delete
  18.             End With
  19.             For Each r In .Rows
  20.                 If Len(Replace(Replace(r.Range.Text, vbCr, ""), Chr(7), "")) = 0 Then r.Delete
  21.             Next
  22.         End With
  23.         If s = 1 Then Exit For
  24. sk:
  25.     Next
  26. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-5-27 07:58 | 显示全部楼层
413191246se 发表于 2021-5-25 17:14
楼主,如果你说的“删除空段”是指表格内的空段,则上面《表格处理》宏已经包括了!还请试用下面的宏:

收到,谢谢!
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-8 02:24 , Processed in 0.025707 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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