PC Review


Reply
Thread Tools Rate Thread

Copy range from Sheet1 into empty range in Sheet2

 
 
Buddy
Guest
Posts: n/a
 
      18th Aug 2009
I am always copying range C2:P5 from Sheet1, however the range I am pasting
it into in Sheet 2 will be any one of these ranges.

Ranges
C5:P8
C9:P12
C13:P16
C17:P20
C21:P24
C25:P28
C33:P36
C37:P40
C41:P44
C45:P48
C49:C52
C53:C56
C57:C60
C61:C64
C65:C67

Can you help me add to the macro below so that it searches these ranges from
top to bottom and pastes the contents into the first empty range without
contents?

Sub FindEmptyRange()
Sheets("Sheet2").Range("C5:P8").Value = _
Sheets("Sheet1").Range("C2:P5).Value
Sheets("Sheet2").Activate
End Sub

For example ideally the macro will check range C5:P8 on Sheet2 first. If
that range already has contents inside it then C9:P12 will be checked. If
that range is empty the contents will be pasted into it, if not, the macro
will go to the next range C13:C16, and so on.

 
Reply With Quote
 
 
 
 
Jim Cone
Guest
Posts: n/a
 
      19th Aug 2009
Dim arrRng As Variant
Dim vItem As Variant
arrRng = Array("C5:P8", "C9:P12", "C13:P16") '>> Add the other addresses
For Each vItem In arrRng
If Application.CountA(Worksheets("Sheet2").Range(vItem)) = 0 Then
Worksheets("Sheet2").Range(vItem).Value = _
Worksheets("Sheet1").Range("C2:P5").Value
Exit For
End If
Next
--
Jim Cone
Portland, Oregon USA





"Buddy" <(E-Mail Removed)>
wrote in message
news:338E6690-D0D4-4C23-9EE4-(E-Mail Removed)...
I am always copying range C2:P5 from Sheet1, however the range I am pasting
it into in Sheet 2 will be any one of these ranges.

Ranges
C5:P8
C9:P12
C13:P16
C17:P20
C21:P24
C25:P28
C33:P36
C37:P40
C41:P44
C45:P48
C49:C52
C53:C56
C57:C60
C61:C64
C65:C67

Can you help me add to the macro below so that it searches these ranges from
top to bottom and pastes the contents into the first empty range without
contents?

Sub FindEmptyRange()
Sheets("Sheet2").Range("C5:P8").Value = _
Sheets("Sheet1").Range("C2:P5).Value
Sheets("Sheet2").Activate
End Sub

For example ideally the macro will check range C5:P8 on Sheet2 first. If
that range already has contents inside it then C9:P12 will be checked. If
that range is empty the contents will be pasted into it, if not, the macro
will go to the next range C13:C16, and so on.

 
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
Simple? View named range from sheet1 on sheet2 susiew32 Microsoft Excel Worksheet Functions 1 27th Aug 2009 03:29 PM
Populate growing range of cells from Sheet1 to Sheet2 Brad Microsoft Excel New Users 10 23rd Jul 2009 08:32 AM
Populate growing range of cells from Sheet1 to Sheet2 Brad Microsoft Access Getting Started 2 21st Jul 2009 05:19 PM
copy data from sheet2 to sheet1 when sheet2 has variable # of rows Anne Microsoft Excel Misc 6 27th Feb 2009 09:48 PM
copy cell B19:J19 Range data’s from sheet1, and to past in sheet2 DJSK Microsoft Excel Programming 4 18th Jun 2008 12:18 PM


Features
 

Advertising
 

Newsgroups
 


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