Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Sub Replacespace()
  2. For Each Sht In ActiveWorkbook.Sheets
  3. Set Rng = Sht.UsedRange
  4. For Each cell In Rng
  5. If cell.Value = "; " Then
  6. cell.Value = ";"
  7. End If
  8. Next cell
  9. Next Sht
  10. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement