Google Sheets Formulas

Some google sheeets formulas to manipulate data in the cloud.

Items will be added as I make use of new formulas.


Index

  1. Split cell at a specific character or set of characters

//1. Split cell at a specific character or set of characters
// where B2 contains multiple words to be split at a comman and a space which will split into C2 and D2
=SPLIT(B2,", ")