Pasting After a List

F

faceman28208

If

1, I have a list (number bullet, whatever)
2. Set the line following the list to some other style (Body Text,
Normal, whatever)
3. Place the insertion point within the line with that other style.
4. Paste

Word then:
1. Makes the text part of the list even though the past is to a number
style
2. If I click the paste button I can change that to "Past List
Without Merging"

However, there appears to be no options to use destination styles.

Is there any way to paste after list and get the text to use the
destination style?
 
G

Graham Mayor

Use paste special unformatted text to format the pasted text with the style
at the cursor.
A macro may help with that

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top