Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default how to copy entire row into next row

how can i copy an entrie row into the next row by macro. Thanks for your
help


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,092
Default how to copy entire row into next row

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default how to copy entire row into next row

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Copy entire row to different worksheet Kcope8302 Excel Worksheet Functions 5 August 17th 09 03:14 PM
How to copy entire row into next row by macro john_liu Excel Programming 1 September 22nd 04 07:10 AM
Copy entire file using VBA Rob Excel Programming 5 May 8th 04 04:40 PM
Code to copy range vs Copy Entire Worksheet - can't figure it out Mike Taylor Excel Programming 1 April 15th 04 08:34 PM
Copy entire Worksheet how? Stormin' German Excel Programming 2 February 4th 04 12:26 AM


All times are GMT +1. The time now is 07:12 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"