Excel becomes unresponsive when copying a named range over one column. I have multiple sheets and it works fine on all but two of them. This is not just a macro issue as I can't get the paste to work even when doing it manually outside of the macro. I've tried deleting the name and recreating it, but to no avail. Has anyone else had this issue?
Code:
Application.Goto Reference:="Copy_CP"
Selection.Copy
Range("B6").Select
ActiveSheet.Paste
Thanks,
C.