Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi there,
I have a varying range say A2:E40 (E40 varies every week), I would like to copy this varing range to the end of another varying range say H2:L40 (L40 varies every week) is this possible???? 1. Assume there might be embedded blanks. tia BigH |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi BigH,
Give this a try. Sub RangyRange() Dim Lrow As Long Dim Drng As Range Lrow = Cells(Rows.Count, "A").End(xlUp).Row Set Drng = Range("A2:A" & Lrow) Drng.Copy Range("L1500").End(xlUp).Offset(1, 0) End Sub HTH Regards, Howard "BigH" wrote in message ... Hi there, I have a varying range say A2:E40 (E40 varies every week), I would like to copy this varing range to the end of another varying range say H2:L40 (L40 varies every week) is this possible???? 1. Assume there might be embedded blanks. tia BigH |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can't Copy and Paste or Paste Special between Excel Workbooks | Excel Discussion (Misc queries) | |||
Copy range in macro using paste special values | Excel Discussion (Misc queries) | |||
help w/ generic copy & paste/paste special routine | Excel Programming | |||
Dynamic Copy/Paste Special Formulas/Paste Special Values | Excel Programming | |||
Select Range every 20 rows copy & paste special | Excel Programming |