Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
SPLIT divides a text string at every occurrence of a specified delimiter and spills the resulting segments into adjacent cells horizontally. It is a Google Sheets-native function commonly used to separate comma-delimited values, full names, or structured codes into individual columns.
=TRIM(MID(SUBSTITUTE(A2,",",REPT(" ",100)),1,100))=SPLIT(A2,",")Computed by a real spreadsheet engine on the sample data below.
| Tags | Tag 1 |
| red,blue,green | red |
| cats,dogs | cats |
| a,b,c,d | a |
| one,two | one |
=TRIM(MID(SUBSTITUTE(A2,",",REPT(" ",100)),1,100))→red
Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: