View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
vat vat is offline
external usenet poster
 
Posts: 5
Default What is Error "Method "Paste" of object "_Worksheet" failed?

I recorded the simpliest macro to move content of the cell A1 to the cell A2:

Range("A1").Select
Selection.Cut
Range("A2").Select
ActiveSheet.Paste

It returned the following error message:

Run-time error '-2147417848 (80010108)':
Method "Paste" of object "_Worksheet" failed

I copied the macro into a new workbook and it worked OK. I can't find a
difference between the workbooks.

Please help!