How to Split Text in Google Sheets (3 Easy Methods) (Khmer)
Learn 3 easy methods to split text into columns in Google Sheets using Split Text to Columns tool, SPLIT formula, and REGEXEXTRACT with Khmer video guide.
Hello everyone! Today I show you 3 easy methods to split text into separate columns in Google Sheets step by step with video tutorial in Khmer language.
Whether you want to split first name and last name, separate email username from domain, or split product code, these 3 methods will make your work super fast!
Method 1: Split Text to Columns Tool (No Formula)
This is easiest built-in tool in Google Sheets when you don't want to write any formula.
Step by Step:
- Select column containing text you want to split (e.g.
A2:A10). - Click Data menu on top bar.
- Select Split text to columns.
- A small floating box appears at bottom right (Separator):
- Choose Detect automatically, Space, Comma, Semicolon, or Custom (e.g.
-or/).
- Choose Detect automatically, Space, Comma, Semicolon, or Custom (e.g.
- Google Sheets splits text into adjacent columns instantly!
Method 2: Use SPLIT() Formula (Dynamic Formula)
If you want formula that updates automatically when text changes, use SPLIT() function.
Formula Syntax:
=SPLIT(text, delimiter)
Examples:
-
Split by Space (First Name & Last Name):
=SPLIT(A2, " ")Sophea Chan➔ Column B:Sophea, Column C:Chan -
Split by Comma:
=SPLIT(A2, ",")Apple, Banana, Orange➔ Splits into 3 separate cells. -
Split by Hyphen (
-):=SPLIT(A2, "-")KH-PHN-2026➔KH|PHN|2026
Method 3: Use REGEXEXTRACT() Formula (Advanced Pattern)
When text has no clear delimiter (like extracting numbers from text or splitting email address), use REGEXEXTRACT().
Examples:
-
Extract Numbers Only from Text:
=REGEXEXTRACT(A2, "\d+")Item #4500 USD➔4500 -
Extract Text Letters Only:
=REGEXEXTRACT(A2, "[A-Za-z]+")Item #4500 USD➔Item -
Split Email Username & Domain:
=REGEXEXTRACT(A2, "^([^@]+)@(.+)$")info@rean.me➔ Column B:info, Column C:rean.me
📹 Watch Khmer Video Tutorial
Watch video step by step below to see 3 methods to split text in Google Sheets:
💡 Quick Tip:
- Caution! Overwriting Cells: When splitting text, make sure columns on the right are empty! If adjacent cells have existing data, Google Sheets will overwrite them!
- Split Whole Column at Once: Combine
ARRAYFORMULAwithSPLITso you don't need to copy formula down manually:=ARRAYFORMULA(SPLIT(A2:A100, " ")).- Remove Double Spaces First: If text has uneven extra spaces, wrap with
TRIM:=SPLIT(TRIM(A2), " ").
📚 Related Resources
Related Tutorials
Opens in new tab ↗How to Clean Extra Spaces in Google Sheets (4 Easy Methods) (Khmer)
Learn 4 easy methods to remove extra spaces, leading spaces, and hidden characters in Google Sheets using Trim whitespace tool, TRIM, REGEXREPLACE, and CLEAN.
2 Quick Ways to Remove Blank Cells from Your List in Google Sheets (Khmer)
Learn 2 quick ways to remove blank cells and empty rows from your list in Google Sheets using FILTER formula and Filter Tool with Khmer video guide.
How to Count Checked and Unchecked Boxes in Google Sheets (Khmer)
Learn how to count checked and unchecked boxes, calculate percentage %, and build progress bars in Google Sheets step by step with Khmer video guide.