Manage Data (Application-defined error 1004)

batman119

New Member
Joined
Mar 1, 2012
Messages
2
Hi

I am a vba newb. What I tried to do is copying the data from one cell to another.

Sub DataManipulate()

Row = 13 '

Do
Range(Cells(Row, 4), Selection.End(xlToRight)).Select
Selection.Cut 'Select these cells and cut

If Range(Selection.End(xlUp)).Offset(-1, 0).Value = "" Then
Range(Selection.End(xlUp)).Offset(-1, 0).Select
ActiveSheet.Paste


Else
Range(Selection.End(xlUp)).Offset(-1, 0).Selection.End(xlToRight).Offset(0, 1).Select
ActiveSheet.Paste

End If 'Locate to the cell and paste

Row = Row + 1

Loop Until Cells(Row, 1).Value = ""
End Sub

But the application-defined error popped up.
Please any insights are welcome!

Thanks
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result

Forum statistics

Threads
1,215,706
Messages
6,126,340
Members
449,311
Latest member
accessbob

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top