Guest User

Untitled

a guest
Dec 18th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Sub Del()
  2. Dim cell As Object
  3.  
  4. For Each cell In Range("A2:A10")
  5. If Not IsEmpty(cell) Then
  6. cell.Value = Right(cell, Len(cell) - 123)
  7. Columns("A").HorizontalAlignment = xlCenter
  8. End If
  9.  
  10. Next cell
Add Comment
Please, Sign In to add comment