ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 麻烦大家帮我修改一下WORD表格自动处理的代码

[复制链接]

TA的精华主题

TA的得分主题

发表于 2015-11-18 11:50 | 显示全部楼层 |阅读模式
因此我们专业报告是由各专业的人编写再汇总,大家的表格编制格式都不一样,所以最后报告汇总时需调整所有的表格,工作量很大。我这个有别人的宏代码,它会自动处理表格,不过它处理的格式与我们的要求不太一样,还请大家帮我看看要怎么修改这段代码。表格处理前后的格式详见附件,若是可以连表格上面的表名和表格编号的格式也一起修改,那是最好。谢谢!

参考代码:

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
                .HeightRule = wdRowHeightAtLeast
                .Height = CentimetersToPoints(0.9)
            End With
            With .Range
                With .Cells
                    .DistributeWidth
                    .VerticalAlignment = wdCellAlignVerticalCenter
                End With
                .Font.Size = 12
                With .ParagraphFormat
                    .Alignment = wdAlignParagraphCenter
                    .CharacterUnitFirstLineIndent = 0
                    .FirstLineIndent = CentimetersToPoints(0)
                    .Space1
                End With
            End With
            .Shading.BackgroundPatternColor = wdColorAutomatic
            .AutoFitBehavior (wdAutoFitContent)
            .AutoFitBehavior (wdAutoFitContent)
            .Select
            .AutoFitBehavior (wdAutoFitWindow)
            .AutoFitBehavior (wdAutoFitWindow)
            With .Rows(1).Range.Font
                .Name = "黑体"
                .Name = "Times New Roman"
                .Bold = True
            End With
        End With
        If n = 1 Then Exit For
    Next
End Sub

表格处理前后的格式.rar

38.89 KB, 下载次数: 17

TA的精华主题

TA的得分主题

 楼主| 发表于 2015-11-18 14:50 | 显示全部楼层
好像我自己搞定了,修改后的代码如下:

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
                .HeightRule = wdRowHeightAtLeast
                .Height = CentimetersToPoints(0.9)
            End With
            With .Range
                With .Cells
                    .DistributeWidth
                    .VerticalAlignment = wdCellAlignVerticalCenter
                End With
                .Font.Size = 10.5
                With .ParagraphFormat
                    .Alignment = wdAlignParagraphCenter
                    .CharacterUnitFirstLineIndent = 0
                    .FirstLineIndent = CentimetersToPoints(0)
                    .Space1
                End With
            End With
            .Shading.BackgroundPatternColor = wdColorAutomatic
            .AutoFitBehavior (wdAutoFitContent)
            .AutoFitBehavior (wdAutoFitContent)
            .Select
            .AutoFitBehavior (wdAutoFitWindow)
            .AutoFitBehavior (wdAutoFitWindow)
            With .Rows(1).Range.Font
                .Name = "宋体"
                .Name = "Times New Roman"
            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
        End With
        If n = 1 Then Exit For
    Next
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2015-11-18 15:15 | 显示全部楼层
我二楼发的代码还是有问题,很多表格还是没有办法把字体全部改为宋体字

TA的精华主题

TA的得分主题

发表于 2015-11-18 16:25 | 显示全部楼层
呵呵,楼主,原来的代码是我编的——如果光标未在表格中,循环遍历处理所有表格(如果光标在表格中,则处理当前表格),你把下面两句代码放到第6句代码 With t 下面一行即可:(把原来的“宋体”改回“黑体”,它是把表头,即表格第一行变为黑体加粗-----我打开你的附件文档后,看不到文档内容,是乱码,如果问题没有解决,请重新上传附件)
            t.Range.Font.Name = "宋体"
            t.Range.Font.Name = "Times New Roman"

TA的精华主题

TA的得分主题

发表于 2015-11-19 06:24 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
试试看
  1. Sub 表格处理()
  2.     On Error Resume Next
  3.     Dim t As Table, n As Long
  4.     For Each t In ActiveDocument.Tables
  5.         With t.Rows
  6.             .WrapAroundText = False
  7.             .Alignment = wdAlignRowLeft
  8.             .HeightRule = wdRowHeightAtLeast
  9.             .Height = CentimetersToPoints(0.9)
  10.         End With
  11.         With t.Range
  12.             .Font.Name = "宋体"
  13.             .Font.Name = "Times New Roman"
  14.             .Font.Size = 10.5
  15.             With .Cells
  16.                 .DistributeWidth
  17.                 .VerticalAlignment = wdCellAlignVerticalCenter
  18.             End With
  19.             With .ParagraphFormat
  20.                 .Alignment = wdAlignParagraphCenter
  21.                 .CharacterUnitFirstLineIndent = 0
  22.                 .FirstLineIndent = CentimetersToPoints(0)
  23.                 .Space1
  24.             End With
  25.         End With
  26.         t.Shading.BackgroundPatternColor = wdColorAutomatic
  27.         t.AutoFitBehavior (wdAutoFitContent)
  28.         t.AutoFitBehavior (wdAutoFitWindow)
  29.         Options.DefaultBorderLineWidth = wdLineWidth150pt
  30.         With t.Borders(wdBorderTop)
  31.             .LineStyle = Options.DefaultBorderLineStyle
  32.             .LineWidth = Options.DefaultBorderLineWidth
  33.             .Color = Options.DefaultBorderColor
  34.         End With
  35.         With t.Borders(wdBorderLeft)
  36.             .LineStyle = Options.DefaultBorderLineStyle
  37.             .LineWidth = Options.DefaultBorderLineWidth
  38.             .Color = Options.DefaultBorderColor
  39.         End With
  40.         With t.Borders(wdBorderBottom)
  41.             .LineStyle = Options.DefaultBorderLineStyle
  42.             .LineWidth = Options.DefaultBorderLineWidth
  43.             .Color = Options.DefaultBorderColor
  44.         End With
  45.         With t.Borders(wdBorderRight)
  46.             .LineStyle = Options.DefaultBorderLineStyle
  47.             .LineWidth = Options.DefaultBorderLineWidth
  48.             .Color = Options.DefaultBorderColor
  49.         End With
  50.     Next
  51. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2015-11-19 08:15 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
谢谢楼上各位的帮忙,问题解决了,谢谢!

TA的精华主题

TA的得分主题

发表于 2015-11-19 09:15 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
主要是 loquat 帮的忙。。。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-15 18:19 , Processed in 0.024446 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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