V
vat
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!
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!