Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
how can i copy an entrie row into the next row by macro. Thanks for your
help |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Rows("1:1").Copy Destination:=Rows("2:2")
"john_liu" wrote in message ... how can i copy an entrie row into the next row by macro. Thanks for your help |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
this will copy the active row down one
Sub copyentirerow() Rows(ActiveCell.Row).Copy Rows(ActiveCell.Row + 1) End Sub -- Don Guillett SalesAid Software "john_liu" wrote in message ... how can i copy an entrie row into the next row by macro. Thanks for your help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy entire row to different worksheet | Excel Worksheet Functions | |||
How to copy entire row into next row by macro | Excel Programming | |||
Copy entire file using VBA | Excel Programming | |||
Code to copy range vs Copy Entire Worksheet - can't figure it out | Excel Programming | |||
Copy entire Worksheet how? | Excel Programming |