A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Yes! I have been able to replicate the error which occurs intermittently as per your description.
Try the following code. I have not been able to replicate the error with the modifications.
Sub InsertArrow()
Application.CutCopyMode = False 'Clear the copy first
ActiveSheet.Shapes("Elbow Connector 3").Copy
DoEvents 'Finish processing before next command
ActiveSheet.Paste
End Sub