Easy one ... How to cut and paste rows between sheets?
Posted by Ron Dionne on November 06, 2001 1:39 PM
I want to remove rows of data that have stat errors.
I use the following code to delete the row of data:
finalWB.Worksheets("FT Data").Rows(n).Delete
I would instead like to cut the data and paste it into
another worksheet via VBA and retain formatting. I would
like the pasted data to be one the next line available
in my "Errors" worksheet.
finalWB.Worksheets("FT Data").Rows(n).Cut will cut the data
but
finalWB.Worksheets("Errors").Rows(n).Paste puts the data
on the first line each time. How do I get the data on the
next available line?