![]() |
|
|||||||
|
|
|
Thread Tools | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Wonderful, thanks Paul!
As for moving the cursor at the end of a range, I found a solution, although I believe there must be a simpler way to achieve this (like a single instruction). If so, I would love to find out about it! Until then, this is what I'll be using... Code:
Dim pasted_content As range
Set pasted_content = Selection.range
pasted_content.Paste
With pasted_content
.Select
Selection.MoveRight Unit:=wdCharacter, Count:=1
End With
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
One line find execute in this case is possible?
|
eduzs | Word VBA | 1 | 05-18-2020 10:52 AM |
| Execute a Sub OR routine or macro based on multiple user choices from a dropbox | VitorH | Word VBA | 1 | 03-29-2019 02:48 AM |
How to avoid find.execute moving focus and restore exact view after search
|
diracsbracket | Word VBA | 3 | 10-30-2016 03:17 AM |
| Find Bookmark, move to bookmark, execute code, repeat | raymm3852 | Word VBA | 10 | 04-15-2016 06:21 PM |
Find and Execute
|
cksm4 | Word VBA | 1 | 10-22-2011 11:36 PM |