G gcharbonnet Mar 29, 2004 #1 In WordPerfect, there was a way to select a block of text and save it o print it. Is there any way to do that in Word? Thanks
In WordPerfect, there was a way to select a block of text and save it o print it. Is there any way to do that in Word? Thanks
G Graham Mayor Mar 30, 2004 #2 You need a macro! Sub CopySelectedToNewDoc() Selection.Copy Documents.Add Template:="Normal" Selection.Paste End Sub You can print the new doc. http://www.gmayor.com/installing_macro.htm -- <>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<> Graham Mayor - Word MVP Web site www.gmayor.com Word MVP web site www.mvps.org/word <>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
You need a macro! Sub CopySelectedToNewDoc() Selection.Copy Documents.Add Template:="Normal" Selection.Paste End Sub You can print the new doc. http://www.gmayor.com/installing_macro.htm -- <>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<> Graham Mayor - Word MVP Web site www.gmayor.com Word MVP web site www.mvps.org/word <>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
S Suzanne S. Barnhill Mar 30, 2004 #3 You can select a block of text and then choose Selection in the Print dialog. To save it, use Graham's macro. -- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.
You can select a block of text and then choose Selection in the Print dialog. To save it, use Graham's macro. -- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.