+ Reply to Thread
Results 1 to 3 of 3

Problem with copy to next empty row

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    12-30-2012
    Location
    Israel
    MS-Off Ver
    2007, 2016
    Posts
    642

    Problem with copy to next empty row

    Hi,
    I'm getting an error with these three lines, from the code below. Why?
                        R1.Offset(-i, 0).EntireRow.Copy _
                        Destination:= _
                        CD.Range("A1").End(xlDown).Offset(1, 0)
    Help please.


    Option Explicit
    
    Public Sub DataForRStatistics()
    
    Dim NR As Worksheet: Set NR = Worksheets("NorthernRoutesSunday8")
    Dim CD As Worksheet: Set CD = Worksheets("CleanData")
    
    Dim R1, R2 As Range
    
    Dim i As Integer
    
    With NR
        For Each R1 In .Range("C2:C" & .UsedRange.Rows.Count)
            If R1.Value = 6 Then
                    For i = 1 To 6
                        R1.Offset(-i, 0).EntireRow.Copy _
                        Destination:= _
                        CD.Range("A1").End(xlDown).Offset(1, 0)
                    Next i
            End If
        Next R1
    End With
    
    End Sub
    Please * if you like the answer

  2. #2
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Problem with copy to next empty row

    If there's no data in A2 on CD, you're trying to paste to a cell one below the last row available in the sheet. Try:
    R1.Offset(-i, 0).EntireRow.Copy _
                        Destination:= _
                        CD.Cells(CD.Rows.Count, "A").End(xlUp).Offset(1, 0)
    Everyone who confuses correlation and causation ends up dead.

  3. #3
    Forum Contributor
    Join Date
    12-30-2012
    Location
    Israel
    MS-Off Ver
    2007, 2016
    Posts
    642

    Re: Problem with copy to next empty row

    Many thanks

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Need to find empty filled cells in a column and copy to the empty cell below
    By Grahamfeeley in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-30-2014, 10:09 AM
  2. Copy/Paste to Next Empty Row Overwriting Previous Row When Column A Is Empty
    By grantfitz in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-19-2013, 04:34 PM
  3. Check cell...if not empty copy row (EDIT FOR ADDITIONAL PROBLEM)
    By skip08 in forum Excel - New Users/Basics
    Replies: 11
    Last Post: 09-13-2011, 10:29 AM
  4. Problem with copy/paste to empty cell
    By ArtZ in forum Excel Programming / VBA / Macros
    Replies: 18
    Last Post: 08-24-2008, 03:39 PM
  5. copy copy row of data to empty row in sheet2
    By shy07014 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 06-08-2008, 03:49 PM

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