Hello.
I'm having a problem similar to one that was addressed in this forum back in Nov 2008 (in fact that specific problem is how I found the forum) wherein while recording a macro the copy/paste works, but when I stop recording and try to execute it the paste fails. Unlike that issue, this is on a single worksheet.
I read through that post and attempted the solutions, even going so far as adding another worksheet into which I would do the paste, but all was for naught.
The original code looks like this:
Sub Macro4()
'
Range("A3:A5000").Select
Selection.Copy
Range("E3").Select
Application.CutCopyMode = False
ActiveSheet.Paste
' --- more code that doesn't get executed due to the error above
End Sub
On the off chance that the problem was related to the size of the range, I decided to try the following:
Sub Macro5()
'
Range("L3").Select
Selection.Copy
Range("E3").Select
Application.CutCopyMode = False
ActiveSheet.Paste
' --- more code that doesn't get executed due to the error above
End Sub
But, alas, this generates the same error.
I then ran Office Update to download/install all the latest fixes, but I'm still experiencing the same problem.
While I'm trying to copy the results of formulae, I tried Macro5 with a simple character string also, still no luck.
I am relatively new to excel macros and VBA, so I think there must be something I'm missing.
Can anyone provide enlightenment?
Thanks in advance,
Terry