+ Reply to Thread
Results 1 to 2 of 2

Copy and paste macro-blank cells thereafter.

  1. #1
    Bikernick
    Guest

    Copy and paste macro-blank cells thereafter.

    I am trying to write a bit of code to search for the first blank row in an
    excel list then paste a selection at that point in the list then stop.

    I have managed it to finding the first blank row, but it continues pasting
    into all the blank cells thereafter.

    Help please

  2. #2
    Don Guillett
    Guest

    re: Copy and paste macro-blank cells thereafter.

    does this help

    Sub firstblankrow()
    fbr = Cells(1, 1).End(xlDown).Offset(1).Address
    Range("a1").Copy Range(fbr)
    End Sub


    --
    Don Guillett
    SalesAid Software
    [email protected]
    "Bikernick" <[email protected]> wrote in message
    news:[email protected]...
    >I am trying to write a bit of code to search for the first blank row in an
    > excel list then paste a selection at that point in the list then stop.
    >
    > I have managed it to finding the first blank row, but it continues pasting
    > into all the blank cells thereafter.
    >
    > Help please




+ 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