![]() |
Move Selected Rows To A Different Sheet
I would like to select different rows on Sheet1 and then move them to
the next blank row on Sheet2. Can anyone please help? |
Move Selected Rows To A Different Sheet
One way:
Sub MoveRows() Selection.EntireRow.Copy Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial End Sub Watch out for line wrapping. The line that starts with Sheets must end with PasteSpecial. HTH Otto "cheeser83" wrote in message ups.com... I would like to select different rows on Sheet1 and then move them to the next blank row on Sheet2. Can anyone please help? |
Move Selected Rows To A Different Sheet
Thank you for the help!!
Otto Moehrbach wrote: One way: Sub MoveRows() Selection.EntireRow.Copy Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial End Sub Watch out for line wrapping. The line that starts with Sheets must end with PasteSpecial. HTH Otto "cheeser83" wrote in message ups.com... I would like to select different rows on Sheet1 and then move them to the next blank row on Sheet2. Can anyone please help? |
All times are GMT +1. The time now is 08:54 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com