PC Review


Reply
Thread Tools Rate Thread

Copy contiguous from one sheet and paste to another every other ro

 
 
Dean
Guest
Posts: n/a
 
      12th May 2009
I am trying to write a macro that copies from Sheet1 contiguous data A1:A30
and paste data to Sheet2 to every other row (ie Sheet1.A1 to Sheet2.A1;
Sheet1.A2 to Sheet2.A3; Sheet1.A3 to Sheet2.A5 and so on). The pasted result
is data with blank cells in between. Thanks in advance.
 
Reply With Quote
 
 
 
 
dmoney
Guest
Posts: n/a
 
      12th May 2009
Sub tst()
Dim s1 As String
Dim s2 As String
s1 = Sheet1.Name
s2 = Sheet2.Name

Sheets(s1).Select

Range("A1").Select
Selection.Copy
Sheets(s2).Select
Range("A1").Select
ActiveSheet.Paste

Sheets(s1).Select
Range("A2").Select
For i = 1 To 30
Application.CutCopyMode = False
Selection.Copy

Sheets(s2).Select
ActiveCell.Offset(2, 0).Activate
ActiveSheet.Paste
Sheets(s1).Select
ActiveCell.Offset(1, 0).Activate
Next i


End Sub


dmoney

"Dean" wrote:

> I am trying to write a macro that copies from Sheet1 contiguous data A1:A30
> and paste data to Sheet2 to every other row (ie Sheet1.A1 to Sheet2.A1;
> Sheet1.A2 to Sheet2.A3; Sheet1.A3 to Sheet2.A5 and so on). The pasted result
> is data with blank cells in between. Thanks in advance.

 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
copy non-contiguous columns (excel) and paste as table into ppt intoit Microsoft Powerpoint 0 17th Jul 2009 05:22 AM
Copy Paste from Class Sheet to Filtered List on Combined Sheet prkhan56@gmail.com Microsoft Excel Programming 6 16th Sep 2008 04:30 PM
Copy and Paste LAST ROW of data: non-contiguous Row, contiguous Column Sam via OfficeKB.com Microsoft Excel Programming 8 5th Nov 2007 07:18 PM
Copy and Paste LAST ROW of data non-contiguous Sam via OfficeKB.com Microsoft Excel Programming 6 29th Oct 2007 02:28 PM
Copy and paste non-contiguous columns spasmous Microsoft Excel Discussion 4 12th Apr 2006 09:25 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:02 AM.