Skip to content

Instantly share code, notes, and snippets.

@Cylindric
Created March 12, 2013 17:36
Show Gist options
  • Save Cylindric/5145081 to your computer and use it in GitHub Desktop.
Save Cylindric/5145081 to your computer and use it in GitHub Desktop.
Concatenate all strings in a range
Public Function SuperConcat(range As range) As String
Dim out As String
For Each rCell In range.Cells
out = out & rCell.Value
Next rCell
SuperConcat = out
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment