移至另一个文档中的下一个单元格

时间:2016-04-24 06:43:25

标签: vba ms-word word-vba word-2007 word-2003

在另一个文档Range的{​​{1}}中工作时,我TCN.docx位置的method or data member not found错误。

rng.MoveRight unit:=Cell

为了更好地理解

enter image description here

1 个答案:

答案 0 :(得分:1)

编辑:Cindy Meister编辑问题之后

MoveRight不是Range对象的有效方法,而是Selection对象

Cell枚举没有unit值,而wdCell

将元素复制到找到的元素的右侧,使用

    ...
    rng.Find.Execute
    If rng.Find.Found = True Then
        rng.Select
        Selection.MoveRight unit:=wdCell
        Selection.Copy
    Else
    End If
    ...