Hi,
I have written a code that copy the first row in sheet1 to sheet4 and then, delete the first row from the sheet1 to sheet3. However this don't work. Please see code.
Thanks,
I have written a code that copy the first row in sheet1 to sheet4 and then, delete the first row from the sheet1 to sheet3. However this don't work. Please see code.
Thanks,
Code:
For Each Cell In [A1:F1]
Cell.Select
Selection.Copy
Worksheets(4).Paste
ActiveWorkbook.Sheets(1, 3).DeleteRows [A1:IV1]
Next Cell