AI Assistant
Help Center AI Assistant is now available
Got questions about Lark? Use our AI chat to find the answers.
00:00
Click and hold to drag
Got It
Try Now

SPLIT function for Sheets

1 min read
I. Intro
The SPLIT function divides the text of a string into substrings, which are placed into separate cells in the same row.
II. About the function
  • Formula: =SPLIT(text, delimiter, [split_by_each], [remove_empty_text])
  • Arguments:
  • text (required): The string that will be divided.
  • delimiter (required): The character or characters that will divide the text.
  • split_by_each (optional): Determine whether delimiter characters are considered separately or together.
  • True or Null: Each delimiter will split the string.
  • False: Consecutive delimiters are treated as one delimiter.
  • remove_empty_text (optional): Determine whether empty texts are removed from the split results.
  • True or blank: Treat continuous spaces as a single delimiter. If the "split_by_each" is selected as True, this is equivalent to selecting False for "split_by_each".
  • False: Add blank cell values between continuous separators. If the "split_by_each" parameter is selected as False, the effect with this parameter is equivalent to selecting the "split_by_each" parameter as True.
  • Example: =SPLIT("1,2,,3", ",",True,False) will split 1, 2, blank, and 3 into four separate cells.
III. Steps
Use the SPLIT function
  1. Select a cell and enter =SPLIT.
  1. Enter the arguments in brackets and press Enter. The example below shows how phone numbers separated by "/" are split.
250px|700px|reset
Delete the SPLIT function
Select the cell with the SPLIT function and press Delete.
Written by: Lark Help Center
Updated on 2024-05-06
How satisfied are you with this content?
Thank you for your feedback!
Need more help? Please contact Support.
0
rangeDom