Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Private Sub BoomShakalaka_Click()
  2.  
  3. Application.ScreenUpdating = False
  4. ow = Cells(Rows.Count, "J").End(xlUp).Row
  5. For r = ow To 1 Step -1
  6. If Cells(r, "J") = "Invoiced" Then Rows(r).Delete
  7.  
  8. Next
  9. Application.ScreenUpdating = True
  10.  
  11. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement