I don't want to resort to SendKeys "{ESC}"
views:
400answers:
2
+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
2009-11-02 22:36:13