2

如何可靠地向下移动 Word 表中的行?
这是表的结构。请注意,第一列和第二列都可以有多行和多段。

Rule ID         1

Logic           Date must be equal to or greater than 01-Jan-2012 

Discrepancy     Date is before 01-Jan-2012
message

Test case 1.1   Create form where Date is before 01-Jan-2012 
                Verify discrepancy message appears.
                Print form.

Test case 1.2   Create form where Date is equal to 01-Jan-2012.
                Verify no discrepancy message appears.
                Print form.

Test case 1.3   Create form where Date is after 01-Jan-2012.
                Verify no discrepancy message appears.
                Print form.

我尝试了多种方法来降低表格。

当我尝试Selection.MoveDown使用unit:=wdLine(如下)时,当第 1 列包含自动换行时,我遇到了问题。

Selection.MoveDown unit:=wdLine, Count:=1, Extend:=wdMove

当我尝试Selection.MoveDown使用unit:=wdParagraph(如下)时,当第 2 列包含多个段落时遇到了问题。

Selection.MoveDown unit:=wdParagraph, Count:=3 

unit:=wdRow似乎不是 的有效参数Selection.MoveDown
Selection.Cells(1).RowIndex是一个只读参数

有谁知道一种简单的方法,可以一次将表格向下移动一行,既可以处理第 1 列中的自动换行,也可以处理第 2 列中的多个段落?

4

2 回答 2

3

尝试这样的事情。它是一种通用算法,用于循环遍历 Word 文档中所有表格的每一行和每一列。根据需要修改(未经测试的代码):

Sub ModifyAllTables()
  Dim oTbl As Table
  Dim oRow As Row
  Dim oRng As Range
  For Each oTbl In ActiveDocument.Tables
    For Each oRow In oTbl.Rows
      ' Select the cell in column 2.
      Set oRng = oRow.Cells(2).Range
      ' and do something with it...
      'e.g. oRng.TypeText "modified"
    Next
  Next
End Sub
于 2013-01-14T21:36:29.480 回答
2
Sub NextRow()

    Dim c As Long, r As Long

    With Selection
        'ignore if not in table
        If .Information(wdWithInTable) Then

            c = .Columns(1).Index
            r = .Rows(1).Index

            If .Rows(1).Parent.Rows.Count >= r + 1 Then
                .Rows(1).Parent.Rows(r + 1).Cells(c).Range.Select
            End If
        End If
    End With

End Sub
于 2013-01-14T21:49:30.967 回答