When you store a bunch of data in a spreadsheet, a common need is to split cells based on the occurrences of a particular character within those cells. For instance, you might have an address in a cell, such as this:
123 Maple Lane
You might want to put the house number (123) in one cell, the street name (Maple) in another, and the street type (Lane) in a third cell. You can accomplish this easily by using the SPLIT function. If the original address is in cell A1, you could place the following in cell B1:
=split(A1," ")
The first parameter specifies the cell you want to split and the second parameter (a space within quotes) indicates that you want the cell split everyplace there is a space. Once you enter the formula, Sheets splits the contents of cell A1 every place a space occurs and places the results in however many cells are necessary to the right of wherever you placed the formula. Thus, if you put the formula into cell B1, then the results will be in the range B1:D1.
There is a huge caveat here: Since SPLIT uses as many cells as necessary in order to show its results, it is very easy to overwrite information. If the function needs to use multiple cells, it doesn't pay a lot of attention to what was previously in those cells. Thus, it is a good idea to make sure you only use SPLIT when there are enough blank columns to contain all your "split out" data.
There is also another neat use of the split function: It can break information based on multiple delimiters. For instance, you might have the following in a cell:
John Doe, Sr.
If you want to split the text so that each element of the name ends up in it's own cell, you'd actually need to take into account two delimters: a space and a comma. The reason is because if you only split based on spaces, then the last name ends up being "Doe," with the comma at the end. You can include each character on which you want to delimit the text in the second parameter:
=split(A1, " ,")
What you end up with is three columns, with John in the first, Doe in the second, and Sr. in the third. Note that consecutive delimiters (in this case a comma followed immediately by a space) are "collapsed" so that you don't end up with any blank cells.
If you have a large row height, you may want to adjust how the information in a cell is aligned vertically. Sheets allows ...
Discover MoreWhen you get a lot of data in a spreadsheet, it can be hard to zero in on the data you really need to work with. That's ...
Discover MoreTo present your spreadsheet data in just the manner you want, Sheets provides tools that enable you to adjust both ...
Discover More2020-10-06 20:08:45
Allen:
Re: the web page "Splitting Cells" (last updated December 26, 2013): isn't there an error in the very last figure, =split(A1, " ,")?
I think it's supposed to be =split(A1, ", ")
https://drive.tips.net/T012855_Splitting_Cells.html
2013-12-26 22:58:26
Gautam
A very good tip, would be useful.
thanks.
Copyright © 2021 Sharon Parq Associates, Inc.
Comments