+ Reply to Thread
Results 1 to 2 of 2

Copy and Paste Special Dynamic Range

  1. #1
    BigH
    Guest

    Copy and Paste Special Dynamic Range

    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. #2
    L. Howard Kittle
    Guest

    Re: Copy and Paste Special Dynamic Range

    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" <[email protected]> wrote in message
    news:[email protected]...
    > 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 to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1