Skip to content

Instantly share code, notes, and snippets.

@DominicFinn
Created September 17, 2015 16:15
Show Gist options
  • Save DominicFinn/835334d7033dc8b44f6a to your computer and use it in GitHub Desktop.
Save DominicFinn/835334d7033dc8b44f6a to your computer and use it in GitHub Desktop.
Split String Method for VBA
Public Function SplitString(value As String, delimiter As String, arrayVal As Integer) As String
SplitString = Split(value, delimiter)(arrayVal)
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment