Pasting After a List

  • Thread starter Thread starter faceman28208
  • Start date Start date
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?
 
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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top