+ Reply to Thread
Results 1 to 14 of 14

Copy row to another sheet and delete (based on cell content)

Hybrid View

  1. #1
    Registered User
    Join Date
    04-19-2010
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    40

    Question Copy row to another sheet and delete (based on cell content)

    Hi guys, I would like to find an alternative to my code which doesnt work properly at the moment.

    Private Sub CleanUpList()
    Dim CompletedOrderRow As Long, j
    
    j = 2
    'loop - check if R is entered in list until it reaches an empty row
    Do Until Range("L" & j) = ""
    If Range("L" & j) = "D" Then
    'move order to Completed Orders list
    CompletedOrderRow = Sheets("Completed Orders").Range("A" & Rows.Count).End(xlUp).Row + 1
    Sheets("Completed Orders").Cells(CompletedOrderRow, 1).Value = Range("A" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 2).Value = Range("B" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 3).Value = Range("C" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 4).Value = Range("D" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 5).Value = Range("E" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 6).Value = Range("F" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 7).Value = Range("G" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 8).Value = Range("H" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 9).Value = Range("I" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 10).Value = Range("J" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 11).Value = Range("K" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 12).Value = Range("L" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 13).Value = Range("M" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 14).Value = Range("N" & j).Value
    'delete the row
    Cells(j, 1).EntireRow.Delete
    'next row
    j = j + 1
    'if no R try next row
    Else
    j = j + 1
    
    End If
    Loop
    
    End Sub
    I need an efficient code which will copy all the rows with "D" in cell in column L to another sheet (CompeletedOrders) and then delete the rows in Orders sheet.

    Please assist with this, Cheers.
    Last edited by mpower87; 07-05-2010 at 08:18 PM. Reason: solved

  2. #2
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: Copy row to another sheet and delete (based on cell content)

    hi mpower87
    at a glance
    Sheets("Completed Orders").Cells(CompletedOrderRow, 1).resie(1,14).copy  Range("A" & j).Value
    Sheets("Completed Orders").Cells(CompletedOrderRow, 1).resie(1,14).clearcontents
    or find syntax mabe be a better option
    If the solution helped please donate to RSPCA

    Site worth visiting: Rabbitohs

  3. #3
    Registered User
    Join Date
    04-19-2010
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    40

    Re: Copy row to another sheet and delete (based on cell content)

    hi pike,

    thanks for your reply. can you please explain what you mean there? and i tried that code but it doesnt work...

  4. #4
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: Copy row to another sheet and delete (based on cell content)

    Hi mpower87,
    try..
    Do Until Range("L" & j) = ""
    If Range("L" & j) = "D" Then
    'move order to Completed Orders list
    CompletedOrderRow = Sheets("Completed Orders").Range("A" & Rows.Count).End(xlUp).Row + 1
    
    Sheets("Completed Orders").Cells(CompletedOrderRow, 1).resize(1,14).copy  destination:=Range("A" & j).Value
    Cells(j, 1).EntireRow.Delete
    Last edited by pike; 07-02-2010 at 03:02 AM.

  5. #5
    Registered User
    Join Date
    04-19-2010
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    40

    Re: Copy row to another sheet and delete (based on cell content)

    hi mate, thanks for that, i tried it as:
    Private Sub CleanUpList1()
    Dim CompletedOrderRow As Long, j
    j = 2
    Do Until Range("L" & j) = ""
    If Range("L" & j) = "D" Then
    'move order to Completed Orders list
    CompletedOrderRow = Sheets("Completed Orders").Range("A" & Rows.Count).End(xlUp).Row + 1
    Sheets("Completed Orders").Cells(CompletedOrderRow, 1).Resize(1, 14).Copy Destination:=Range("A" & j).Value
    Cells(j, 1).EntireRow.Delete
    j = j + 1
    Else
    j = j + 1
    End If
    Loop
    End Sub
    Unfortunately this resulted in an error:
    Run-time error '1004':

    Copy method of Range class failed

  6. #6
    Registered User
    Join Date
    04-19-2010
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    40

    Re: Copy row to another sheet and delete (based on cell content)

    no one else can have a crack at this?

  7. #7
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: Copy row to another sheet and delete (based on cell content)

    dude can you attach a sample workbook to play with

  8. #8
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: Copy row to another sheet and delete (based on cell content)

    change this bit
    Sheets("Completed Orders").Cells(CompletedOrderRow, 1).Resize(1, 14).Copy Destination:=Range("A" & j)

  9. #9
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: Copy row to another sheet and delete (based on cell content)

    or
    Range("A" & j).Resize(1, 14).Copy Destination:Sheets("Completed Orders").Cells(CompletedOrderRow, 1)

  10. #10
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Copy row to another sheet and delete (based on cell content)

    Private Sub CleanUpList1()
      with sheets(1).Usedrange
          .columns(12).autofilter ,1 "D"
          .offset(1).specialcells(xlcelltypevisible).copy 
    Sheets("Completed Orders").Cells(Rows.Count,1).End(xlUp).offset(1)
          .offset(1).specialcells(xlcelltypevisible).entirerow.delete
          .autofilter
      End With
    End Sub

  11. #11
    Registered User
    Join Date
    04-19-2010
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    40

    Re: Copy row to another sheet and delete (based on cell content)

    hi guys, thanks for you for your replies. unfortunately i can't get your code to work

    attached is a dummy file that may assist you with helping me. i appreciate your time. cheers.
    Attached Files Attached Files

  12. #12
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: Copy row to another sheet and delete (based on cell content)

    mpower87, matie, mate, maaaaate

    You FORGOT to mention the worksheet change event!!!!!!
    Private Sub CleanUpList()
    Dim CompletedOrderRow As Long, iRow
    For iRow = Range("A" & Rows.Count).End(xlUp).Row To 2 Step -1
    If Range("L" & iRow) = "D" Then
    CompletedOrderRow = Sheets("Completed Orders").Range("A" & Rows.Count).End(xlUp).Row + 1
    Range("A" & iRow).Resize(1, 14).Copy Destination:=Sheets("Completed Orders").Cells(CompletedOrderRow, 1)
    Cells(iRow, 1).EntireRow.Delete
    End If
    Next
    End Sub

  13. #13
    Registered User
    Join Date
    04-19-2010
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    40

    Re: Copy row to another sheet and delete (based on cell content)

    hah, well I'm still a noob when it comes to vba. thanks for pointing that out and making a working piece of code pike. much appreciated. kudos to you mate

  14. #14
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: Copy row to another sheet and delete (based on cell content)

    Hey mpower87

    If you are satisfied with the solution(s) provided, please mark your thread as Solved.

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save

+ 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