Guest User

Untitled

a guest
Oct 20th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. Sub DataUp()
  2. Dim lRw As Long
  3. lRw = Cells(Rows.Count, 2).End(xlUp).Row
  4. If lRw < 2 Then Exit Sub
  5.  
  6. Range("B2:B" & lRw).Copy Range("B1:B" & lRw - 1)
  7. Range("B" & lRw).ClearContents
  8. End Sub
Add Comment
Please, Sign In to add comment