J
Jenny
Alter below macro from using a bookmark as the SourceRange to a Selection
(still ActiveDocument) as the Source Range without much ado - how to please?
Sub Copy_Text_Demo_5()
'Copy a range from one place to another
Dim NewDoc As Document, OldDoc As Document
Dim SrcRg As Range, DestRg As Range
Set OldDoc = ActiveDocument
Set NewDoc = Documents.Add
Set SrcRg = OldDoc.Bookmarks("bk").Range
Set DestRg = NewDoc.Range
DestRg.FormattedText = SrcRg.FormattedText
End Sub
(still ActiveDocument) as the Source Range without much ado - how to please?
Sub Copy_Text_Demo_5()
'Copy a range from one place to another
Dim NewDoc As Document, OldDoc As Document
Dim SrcRg As Range, DestRg As Range
Set OldDoc = ActiveDocument
Set NewDoc = Documents.Add
Set SrcRg = OldDoc.Bookmarks("bk").Range
Set DestRg = NewDoc.Range
DestRg.FormattedText = SrcRg.FormattedText
End Sub