Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to select different rows on Sheet1 and then move them to
the next blank row on Sheet2. Can anyone please help? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using Advanced Filter: How do you MOVE the selected rows... | Excel Worksheet Functions | |||
move rows of data seperated in a sheet to a sheet with no separat | Excel Worksheet Functions | |||
Create Macro - move selected rows to new spread sheet | Excel Programming | |||
Beginners' Question : How to move selected columns & rows to a two dimensional array | Excel Programming | |||
Beginners' Question : How to move selected columns & rows to a two dimensional array | Excel Programming |