Skip to content

Instantly share code, notes, and snippets.

@joshschmelzle
Created June 8, 2017 00:36
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 joshschmelzle/40e5bc760c8efa50ec4ff4068f2bded7 to your computer and use it in GitHub Desktop.
Save joshschmelzle/40e5bc760c8efa50ec4ff4068f2bded7 to your computer and use it in GitHub Desktop.
Google Sheets script to return the word at a desired position in a string split by a space.
function FINDCUSTOMVALUE(inpt, pos) {
var array = inpt.split(" ");
return array[pos];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment