How to Split Phone Number with Formula in Excel (Khmer)
Learn how to split two phone numbers in one cell into two separate columns in Excel step by step using LEFT, MID, FIND, LEN, and IF formulas with Khmer video guide.
Hello everyone! Today I show you how to split phone numbers into two separate columns in Excel step by step with easy formulas and video guide in Khmer language.
Many times when customer or staff type data, they put two phone numbers inside one cell like this:
012998877 011223311➔ Split to012998877and011223311010333444 015556655➔ Split to010333444and015556655
Here are simple formulas using LEFT, MID, FIND, LEN, and IF to split them easily!
Method 1: Extract First Phone Number (Before Space)
To get first phone number from cell A2:
Use LEFT and FIND formula:
=LEFT(A2, FIND(" ", A2) - 1)
How it work:
FIND(" ", A2)search position of space character.LEFT(..., FIND(...) - 1)cut text from left side up to before space.
Method 2: Extract Second Phone Number (After Space)
To get second phone number from cell A2, you have 2 options:
Option A: Using MID and LEN Formula (Recommended)
=MID(A2, FIND(" ", A2) + 1, LEN(A2))
Option B: Using RIGHT, LEN, and FIND Formula
=RIGHT(A2, LEN(A2) - FIND(" ", A2))
How it work:
FIND(" ", A2) + 1find start position of second number right after space.MIDorRIGHTcut remaining digits after space position.
Method 3: Smart Formula with IF (Prevent #VALUE! Error)
If some cell only have 1 phone number (no space inside), formula above will return #VALUE! error!
To fix this, wrap with IF and ISNUMBER:
For First Phone Number Column:
=IF(ISNUMBER(FIND(" ", A2)), LEFT(A2, FIND(" ", A2) - 1), A2)
For Second Phone Number Column:
=IF(ISNUMBER(FIND(" ", A2)), MID(A2, FIND(" ", A2) + 1, LEN(A2)), "")
📹 Watch Khmer Video Tutorial
Watch video step by step below to see how to split phone number in Excel:
💡 Quick Tip:
- Text to Columns (No Formula): You can also split without formula! Select cell range ➔ go to Data tab ➔ click Text to Columns ➔ select Delimited ➔ check Space box ➔ click Finish!
- Keep Leading Zero (
0): Phone numbers in Cambodia start with0(e.g.012...). When splitting, format target cells as Text or format custom code'000000000so Excel not auto delete leading zero!- Excel 365 / 2021 New Formula: If you use newest Excel, write
=TEXTSPLIT(A2, " ")to split both numbers across columns automatically!
📚 Related Resources
Related Tutorials
Opens in new tab ↗How to Use Text Cleaning Formulas in Excel (LEFT, RIGHT, MID, LEN, FIND, SEARCH, TRIM, CLEAN) + Video in Khmer
Master top text cleaning formulas in Excel: LEFT, RIGHT, MID, LEN, FIND, SEARCH, TRIM, and CLEAN with Khmer video tutorials and practical examples.
Top 20+ Basic Excel Formulas for Beginners (Video in Khmer)
Learn 20+ essential Excel formulas for beginners: SUM, MIN, MAX, AVERAGE, IF, RANK, COUNT, COUNTA, COUNTIF, SUMIF, VLOOKUP, CONCATENATE, TRIM, UPPER, LOWER, TODAY, NOW, MONTH, DAY, and YEAR with easy video guide.
IF vs Equal (=) vs EXACT Function in Excel (Khmer)
Learn the difference between Equal (=) operator and EXACT function in Excel for case-sensitive text comparison step by step with Khmer video guide.