想在最后一页的倒数第四行插入一些信息
怎么做呢?
------解决方案--------------------------------------------------------
Private Sub test()
ActiveDocument.Range(Len(ActiveDocument.Range.Text) - 1, Len(ActiveDocument.Range.Text)).Select
Selection.GoTo wdGoToLine, wdGoToPrevious, 3
Selection.Range.Text = "Insert Text "
End Sub