![]() |
|
#3
|
|||
|
|||
|
I don't know why your code is getting an error, but there is a better way to achieve what you want without using the clipboard.
Code:
Sub COPYPAR()
'Copy a range from the current para's start till after "=" and
'add it after the para.
Dim selRng As Range: Set selRng = Selection.Paragraphs(1).Range
Dim copyRng As Range: Set copyRng = selRng.Duplicate
'make sure that = is found
If Not copyRng.MoveEndUntil("=", wdBackward) = 0 Then
'make sure that the = is in the same paragraph
If copyRng.InRange(selRng) Then
selRng.InsertParagraphAfter
selRng.Collapse wdCollapseEnd
selRng.FormattedText = copyRng.FormattedText
End If
End If
End Sub
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Macro/VBA to copy text paragraph and insert as new row in summary table, with RAG | l0zzie88 | Word VBA | 2 | 01-18-2024 03:42 PM |
| Copy the entire paragraph in wildcards | asderam | Word VBA | 0 | 01-28-2021 05:54 PM |
Macro to search for a particular word, copy the entire paragraph to a new document
|
Productivity | Word VBA | 2 | 10-25-2019 06:40 AM |
Direct (copy-paste) reference from another paragraph (CITATION)
|
WordNoobx | Word | 6 | 05-15-2018 05:46 AM |
| Copy text to new document based on paragraph numbering | mike.mm | Word VBA | 7 | 11-22-2016 06:14 AM |