views:

400

answers:

2

I don't want to resort to SendKeys "{ESC}"

+4  A: 

application.cutcopymode = false

guitarthrower
+1  A: 

Try this code as an example. The key line is 'Application.CutCopyMode = False'

Sub Test()
    Range("A1").Copy
    MsgBox "View Marching Ants"
    Range("A2").Select
    ActiveSheet.Paste
    Application.CutCopyMode = False
End Sub
Robert Mearns