R
Russ
I am trying to copy an entire document and add it to the end of another
document. I know this is trivial but I just can't seem to find the code
equivalent of the following that does not use selection
Selection.HomeKey Unit:=wdStory 'go to the beginning
Selection.EndKey Unit:=wdStory, Extend:=wdExtend
Selection.Copy
I paste at the destination document with this code
Set range2 = Documents("destination.doc").Content 'paste data into big
document at the end of last paste
range2.Collapse Direction:=wdCollapseEnd
range2.Paste
Anyone help me on this?
document. I know this is trivial but I just can't seem to find the code
equivalent of the following that does not use selection
Selection.HomeKey Unit:=wdStory 'go to the beginning
Selection.EndKey Unit:=wdStory, Extend:=wdExtend
Selection.Copy
I paste at the destination document with this code
Set range2 = Documents("destination.doc").Content 'paste data into big
document at the end of last paste
range2.Collapse Direction:=wdCollapseEnd
range2.Paste
Anyone help me on this?