View Single Post
 
Old 07-31-2019, 05:34 AM
ours_paresseux ours_paresseux is offline Windows 7 64bit Office 2010
Novice
 
Join Date: Jul 2019
Posts: 2
ours_paresseux is on a distinguished road
Default

Quote:
Originally Posted by gmaxey View Post
If you don't need special paste features you might use a simple macro:

Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
  Dim oRng As Word.Range
  Set oRng = Selection.Range
  oRng.Paste
  oRng.Select
End Sub

Thank you Greg, this is very helpful and solved the same problem that I was having.
Please could you break down the code so I can understand what each part means? I am new to vba. Thanks!
Reply With Quote