View Single Post
 
Old 01-10-2018, 09:58 PM
jolivanes jolivanes is offline Windows 10 Office 2013
Advanced Beginner
 
Join Date: Sep 2011
Posts: 91
jolivanes will become famous soon enough
Default

Simmilar what the "traininglady" alluded to.
Code:
Sub Try()
 Range("A1").Copy
 Range("A3").PasteSpecial Paste:=xlPasteAll
End Sub
AFAIK, cut instead of copy does not work. We might hear from someone that proves this idea wrong though.
If it is true, you might have to go back and delete after the pastespecial is done.

Last edited by jolivanes; 01-10-2018 at 10:05 PM. Reason: Add info
Reply With Quote