Move INVOICE to other worksheet

Arcticwarrio

Active Member
Joined
Dec 6, 2005
Messages
439
Hi all,

i have this at the moment:
in a sheet named CURRENT is all our data.
when the jobs done the Satus Column "F" is changed to INVOICE
and then once a day or whenever they are all moved to a new sheet named the month and year, in this case JUN 09
this works fine as it is but at the moment i have to delete the lines myself from where it took the data from in CURRENT or AtoZ then remove them in 1 go.

Simply put, i want the code to remove these lines itself.

any ideas?

this is the code at the moment
Code:
Sub move()
    Dim Cell As Range
    Dim NextRow As Long
    Dim ws1 As Worksheet
    Dim ws2 As Worksheet
    Set ws1 = Sheets("CURRENT")
    Set ws2 = Sheets("JUN 09")

   With ws2
      NextRow = .Range("F65536").End(xlUp).Row + 1
      For Each Cell In ws1.Range("F2:F10000")
         If Cell.Value = "INVOICE" Then
            NextRow = NextRow + 1
            Cell.EntireRow.Cut Destination:=.Rows(NextRow)
            'Cell.EntireRow.Delete
         End If
      Next Cell
   End With
End Sub
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Could you not filter them off first then delete them

Somethig along the lines of.....

Code:
Sub Macro4()
Dim nextrow, lst As Long
nextrow = Sheets("JUN 09").Range("F" & Rows.Count).End(xlUp).Row + 1
lst = Sheets("CURRENT").Range("F" & Rows.Count).End(xlUp).Row
With Sheets("CURRENT")
    .Rows("2:" & lst).AutoFilter Field:=6, Criteria1:="INVOICE"
    .Rows("2:" & lst).SpecialCells(xlCellTypeVisible).Copy
    Sheets("JUN 09").Rows(nextrow).PasteSpecial
    .Rows("2:" & lst).SpecialCells(xlCellTypeVisible).EntireRow.Delete
End With
End Sub
 
Upvote 0
i used a modifyed version of Andrew's code from the post he linked.

thanks again
WOULD NEVER HAVE THOUGHT OF THIS IN A MILLION YEARS!

Code:
Sub moveit()
    Dim Cell As Range
    Dim NextRow As Long
    Dim ws1 As Worksheet
    Dim ws2 As Worksheet
    Set ws1 = Sheets("CURRENT")
    Set ws2 = Sheets("JUN 09")

   With ws2
      NextRow = .Range("F65536").End(xlUp).Row + 1
      For Each Cell In ws1.Range("F2:F10000")
         If Cell.Value = "INVOICE" Then
            NextRow = NextRow + 1
            Cell.EntireRow.Copy Destination:=.Rows(NextRow)
         End If
      Next Cell
   Dim x As Integer, cel2 As Range
   With Range("F2:F1000")
      For x = .Count To 1 Step -1
            If .Cells(x, 1).Value = "INVOICE" Then
               .Cells(x, 1).EntireRow.Delete
            End If
      Next x
   End With
   End With
End Sub

TAG Move and Delete
 
Upvote 0
I think you only need one loop there:

Code:
Sub moveit()
    Dim ws1 As Worksheet
    Dim ws2 As Worksheet
    Dim NextRow As Long
    Dim x As Integer
    Set ws1 = Sheets("CURRENT")
    Set ws2 = Sheets("JUN 09")
    NextRow = ws2.Range("F65536").End(xlUp).Row + 1
    With ws1.Range("F2:F1000")
        For x = .Count To 1 Step -1
            With .Cells(x, 1)
                If .Value = "INVOICE" Then
                    .EntireRow.Copy Destination:=ws2.Rows(NextRow)
                    .EntireRow.Delete
                    NextRow = NextRow + 1
                End If
            End With
        Next x
    End With
End Sub
 
Upvote 0
just to throw a spanner in the works,
how would i get it to ignore any row that had a 1 on column L
sometimes i has a 1.5 or a 2 so i set it to less than 10

i get this, but is there a better way?

Code:
Sub moveme()
    Dim ws1 As Worksheet
    Dim ws2 As Worksheet
    Dim NextRow As Long
    Dim x As Integer
    Set ws1 = Sheets("CURRENT")
    Set ws2 = Sheets("JUN 09")
    NextRow = ws2.Range("F65536").End(xlUp).Row + 1
    With ws1.Range("F2:F1000")
        For x = .Count To 1 Step -1
            With .Cells(x, 1)
                If .Value = "INVOICE" Then
                    If Not .Offset(, 6).Value < 10 Then
                    .EntireRow.Copy Destination:=ws2.Rows(NextRow)
                    .EntireRow.Delete
                    NextRow = NextRow + 1
                    End If
                End If
            End With
        Next x
    End With
End Sub
 
Upvote 0
Is it?

Code:
Sub moveit()
    Dim ws1 As Worksheet
    Dim ws2 As Worksheet
    Dim NextRow As Long
    Dim x As Integer
    Set ws1 = Sheets("CURRENT")
    Set ws2 = Sheets("JUN 09")
    NextRow = ws2.Range("F65536").End(xlUp).Row + 1
    With ws1.Range("F2:F1000")
        For x = .Count To 1 Step -1
            With .Cells(x, 1)
                If .Value = "INVOICE" And Not .Offset(, 6).Value < 10 Then
                    .EntireRow.Copy Destination:=ws2.Rows(NextRow)
                    .EntireRow.Delete
                    NextRow = NextRow + 1
                End If
            End With
        Next x
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,897
Messages
6,122,141
Members
449,066
Latest member
Andyg666

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top