Complete the code to split the text in cell A1 by commas.
=SPLIT(A1, [1])The SPLIT function separates text based on the delimiter you provide. Here, the delimiter is a comma, so the text in A1 will be split at each comma.
Complete the code to split the text in cell B2 by a space character.
=SPLIT(B2, [1])To split text by spaces, use a space character as the delimiter inside quotes.
Fix the error in the formula to split text in C3 by a dash.
=SPLIT(C3, [1])The delimiter must be a text string inside quotes. Using double quotes around the dash is the correct syntax.
Fill both blanks to split the text in D4 by semicolon and remove empty cells.
=SPLIT(D4, [1], [2])
The delimiter is a semicolon inside quotes. The second argument TRUE tells SPLIT to remove empty cells from the result.
Fill all three blanks to split text in E5 by colon, keep empty cells, and split by each character.
=SPLIT(E5, [1], [2], [3])
The delimiter is a colon inside quotes. The second argument FALSE keeps empty cells. The third argument TRUE splits by each character in the delimiter.