word中,怎样定位到文档的倒数第四行?
想在最后一页的倒数第四行插入一些信息
怎么做呢?
[解决办法]
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