ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 表格中大于一行的内容左对齐

[复制链接]

TA的精华主题

TA的得分主题

发表于 2022-2-21 11:01 | 显示全部楼层 |阅读模式
表格上大于一行的左对齐,小于一行的居中,用VBA怎么调?只能全部居中或左对齐,怎么修改程序
Sub TableProcess_Update()
'表格处理 -> 光标在表格外处理所有表格;否则当前表格(选定则选区表格)

    Dim r As Range, t As Table, c As Cell, i As Paragraph, a As Row, x&, y&, z&, j&, k&, e&, n&

    'PaperSetup

    With ActiveDocument
        .Fields.Unlink
        .ConvertNumbersToText
        .Content.Find.Execute "^l", , , 0, , , , , , "^p", 2
    End With

    With Selection
        If .Type = wdSelectionIP Then
            If .Information(wdWithInTable) = True Then
                Set t = .Tables(1)
                Set r = .Tables(1).Range
            Else
                Set r = ActiveDocument.Content
            End If
        Else
            Set r = .Range
        End If
    End With

    For Each t In r.Tables
        With t
            '取消环绕/左对齐/左缩进
            With .Rows
                .WrapAroundText = False
                .Alignment = wdAlignRowCenter
                .LeftIndent = CentimetersToPoints(0)
                .HeightRule = wdRowHeightAtLeast
                .Height = CentimetersToPoints(0.9)
            End With

            '清除格式
            With .Range
                .Next.InsertParagraphBefore
                .MoveEnd
                .Select
                CommandBars.FindControl(ID:=122).Execute
                Selection.ClearFormatting
                .MoveEnd 1, -1
                With .Font
                    .NameFarEast = "仿宋_GB2312"  '字体
                    .Size = 12  '10.5五号,12小四,14四号
                    .Color = RGB(0, 0, 0) '字体颜色
                    .Kerning = 0
                    .DisableCharacterSpaceGrid = True
                End With
                With .ParagraphFormat
                    .CharacterUnitFirstLineIndent = 0    '首行缩进
                    .Alignment = wdAlignParagraphCenter  '居中对齐
                    .LineSpacing = LinesToPoints(1.15)   '行间距
                    .AutoAdjustRightIndent = False
                    .DisableLineHeightGrid = True
                 End With

                .Cells.VerticalAlignment = wdCellAlignVerticalCenter
                .Next.Delete

                '判断表格是否规则(e=1=规则/e=0=不规则)
                x = .Information(wdEndOfRangeRowNumber)
                y = .Information(wdEndOfRangeColumnNumber)
                z = .Cells.Count
            End With
            If x <> 1 Then
                If z = x * y Then
                    For k = 1 To y
                        For j = 1 To x - 1
                            If .Cell(j + 1, k).Width = .Cell(j, k).Width Then e = 1 Else e = 0
                            If e = 0 Then Exit For
                        Next j
                        If e = 0 Then Exit For
                    Next k
                Else
                    e = 0
                End If
            Else
                e = 1
            End If

            '删除空段
            For Each c In .Range.Cells
                For Each i In c.Range.Paragraphs
                    If Asc(i.Range) = 13 And Len(i.Range) = 1 Then i.Range.Delete
                Next
                With c.Range.Paragraphs
                    If .Count > 1 And Len(.Last.Range) = 2 Then .Last.Previous.Range.Characters.Last.Delete
                End With
            Next

            '表头加粗
            .Cell(1, 1).Select
            With Selection
                .SelectRow
                With .Font
                     .Bold = True '加粗
                End With
                With .Range.Find
                    .Execute "^w", , , 0, , , , , , "", 2
                    .Execute " ", , , 0, , , , , , "", 2
                End With
            End With

            If e = 1 Then
                '删除序号
                If .Cell(1, 1).Range Like "序号*" Then
                    ActiveDocument.Range(Start:=.Cell(2, 1).Range.Start, End:=.Cell(x, 1).Range.End).Delete
                End If

                '删除空行
                For Each a In .Rows
                    If Len(Replace(Replace(a.Range.Text, vbCr, ""), Chr(7), "")) = 0 Then a.Delete
                Next

                '序号自动
                If .Cell(1, 1).Range Like "序号*" Then
                    ActiveDocument.Range(Start:=.Cell(2, 1).Range.Start, End:=.Cell(x, 1).Range.End).Select
                    n = 0
                    For Each c In Selection.Cells
                        n = n + 1
                        c.Range.Text = n
                    Next
                End If
            End If

            '边距
            .LeftPadding = CentimetersToPoints(0.02)
            .RightPadding = CentimetersToPoints(0.02)
            .AutoFitBehavior (wdAutoFitContent)
            .Select
            .AutoFitBehavior (wdAutoFitWindow)
        End With
    Next
'    Selection.HomeKey Unit:=wdStory
End Sub

表格.zip

12.33 KB, 下载次数: 4

表格对齐

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

本版积分规则

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

GMT+8, 2024-11-26 21:01 , Processed in 0.050213 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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