Thread: paste
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
jobra jobra is offline
external usenet poster
 
Posts: 13
Default paste

I wish to copy a line and paste it into anotherline

Sub macro1()
Range("A2:L2").Select
ActiveSheet.Copy
Range("A23:L23").Select
ActiveSheet.Paste
end sub
This doesn't work
Can anyone help me on this
Thanks