Skip to content

Instantly share code, notes, and snippets.

@ateneva
Created July 22, 2018 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ateneva/60bac234483b75f5e6e87db36c654827 to your computer and use it in GitHub Desktop.
Save ateneva/60bac234483b75f5e6e87db36c654827 to your computer and use it in GitHub Desktop.
How do I quickly add extra characters to a cell?
Sub AddJIRATableBars()
Dim Cell As Range
Dim oldvalue As String
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
For Each Cell In ActiveSheet.Range("A1:H" & ActiveSheet.UsedRange.Rows.Count)
On Error Resume Next
oldvalue = Cell.Value
Cell.Value = "|" & oldvalue
Next Cell
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment