Complete the formula to split the full name in A1 into separate columns using a space delimiter.
=SPLIT(A1, [1])Full names are separated by spaces, so using " " as the delimiter splits first and last names into separate columns.
Complete the formula to split a date string like '2024-01-15' in B2 into year, month, and day columns.
=SPLIT(B2, [1])The date format uses dashes as separators, so "-" splits the date into year, month, and day columns.
Fix the formula to split a CSV-style value in C3 like 'apple,banana,cherry' into separate columns.
=SPLIT([1], ",")
The first argument of SPLIT must be a cell reference without quotes. Using C3 directly references the cell containing the text to split.
Fill both blanks to split text in D4 by pipe character and remove empty results.
=SPLIT(D4, [1], [2])
The pipe character | is the delimiter. Setting the second argument to TRUE removes any empty strings from the result.
Fill all three blanks to split text in E5 by tab character, keep empty cells, and treat the delimiter as a whole string.
=SPLIT(E5, [1], [2], [3])
CHAR(9) represents the tab character. FALSE for the second argument keeps empty cells. FALSE for the third argument treats the delimiter as a whole string rather than splitting by each character.